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’

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya
0 votes
asked Jun 30, 2020 in Python by GeorgeBell
...