Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please help me to complete this assignment using Python language. The instructions and the sample run are provided. Thank you P.S. It would be nice
Please help me to complete this assignment using Python language. The instructions and the sample run are provided. Thank you
P.S. It would be nice if screenshots of Python are provided in the solution.
- Follow instructions given, EXACTLY! - Make sure to follow the proper naming convention inside your program when naming variables. 1. Create a list that contains names of five subjects of your 2 marks favorite. 2. Create a tuple of five of your grades. 3. Assign both the list and the tuple to two variables and print them. 3 marks 4. Using indexes, access the fourth element of the list and print it out. 5. Using indexes, access the third element of the tuple and print it out 6. Insert a subject (you choose any position) in the list using insert method, then print out the list. 3 marks 7. Create a list of list (2-dimensional list) of two rows and three columns. It contains your name and two of your friends' in the first row. It contains the number of soccer scores you and your friends have scored in the second row. 8. Write a print statement that prints the content in row 0 and column 1. 1 mark 9. Create a list of 4 products available in your local store. Then, use append to add one more product, then print out the list. 1 mark 10. The output of the program should look similar to the output of a sample run shown below. 10 marks total #Sample run 3. ['math', 'physics', 'chemistry', 'English', 'French'] ( 99, 97, 88, 90, 77) 4. English 5. 88 6. ['math', 'physics', 'biology', 'chemistry', 'English', 'French'] 8. George 9. ["cookie","milk","bread"."cheese","drinks")Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started