can anyone solve it for me [closed]

The tuple indexing is not correct in your code:

 >>> print('the {1} {0} {2}'.format('brown', 'fat', 'fox'))
 the fat brown fox

and you do not require the ‘,’ the last comma at the end. remove that too.

Leave a Comment