Question: What will be the output of the following Python code? student =( 'Jack', 19, 3.6) result= , .join( str(d) for d in student ) print(
What will be the output of the following Python code? student =( 'Jack', 19, 3.6) result= ", ".join( str(d) for d in student ) print( student) Jack Jack, 19,3.6 Jack 193.6 Error
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
