0 votes
in Python by

The output of this Python code would be:

select the correct answer from below options

s='{0}, {1}, and {2}’

s.format(‘hi’, ‘great’, ‘day’)

1) ‘hi, great, and day’

2) ‘hi great and day’

3) ‘hi, great, day’

4) Error

1 Answer

0 votes
by
1) ‘hi, great, and day’

Related questions

0 votes
asked Aug 22, 2022 in Python by Robindeniel
0 votes
asked Aug 22, 2022 in Python by Robindeniel
...