Let\'s say I have the following lists:
assignment = [\'Title\', \'Project1\', \'Project2\', \'Project3\'] grades = [ [\'Jim\', 45, 50, 55], \\ [\'
You can use * to unpack a list into positional parameters:
*
zip(assignment, *grades)