Discussion :: Python MCQs
-
What is the output of the following?string = "my name is x"for i in string.split():print (i, end=", ")
Answer : Option C
Explanation :
Variable i takes the value of one word at a time.
Be The First To Comment