Answered step by step
Verified Expert Solution
Question
1 Approved Answer
how do I code this on python please 7. Print out a list of lists pairing the elements, at each index, from four separate lists.
how do I code this on python please
7. Print out a list of lists pairing the elements, at each index, from four separate lists. For example, given the lists ids=[1,2,3] course_number =[ 'ECO4421', 'EC04932', 'EC04993'] course_nate = ['Econometrics', 'Topics in Theory', 'Seminar'] course_prof =[ 'P, Bidarkota', 'D.Yilmazkuday', 'J. Bull' ] your code should print the single list [(1, 'EC04421', 'Eeonometrics', 'P,Bidarkota'), (2. 'EC04932', 'Topics in Theory', 'D.Yilmazkuday'), (3, 'ECO4903', 'Seminar', 'J.Bull')] 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