Q. The output of this Python code would be:
Code:
s='{0}, {1}, and {2}’
s.format(‘hi’, ‘great’, ‘day’)
β
Correct Answer: (A)
‘hi, great, and day’
s='{0}, {1}, and {2}’
s.format(‘hi’, ‘great’, ‘day’)
You must be Logged in to update hint/solution