Question: What will be the output of the following Python code? student= ('Jack', 19, 3.6) result= , .join( student) print( student ) Jack Jack, 19, 3.6
What will be the output of the following Python code? student= ('Jack', 19, 3.6) result= ", ".join( 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
