in Python by (515 points)
What is the output of the code shown below?

'The {} side {1} {2}'.format('bright', 'of', 'life')

a. No output
b. Error
c. ‘The {bright} side {of} {life}’
d. ‘The bright side of life’

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya (515 points)
...