0 votes
in Python by
What is the output of the code shown below?

'%.2f%s' % (1.2345, 99)

a. ‘1.234599’
b. 1.23, 99
c.‘1.2399’
d. ‘1.2345’, ‘99’
...