Discussion :: Python MCQs
-
What is the output of the following?print("Hello {1} and {0}".format('bin', 'foo'))
Answer : Option A
Explanation :
The numbers 0 and 1 represent the position at which the strings are present.
Be The First To Comment