0
What is the answer to this quiz?
print('{2}, {1},{0}'.format(*'abc')
3 odpowiedzi
+ 4
● I think you are missing a bracket
After closing the bracket the output will be:
c, b,a
+ 5
the answer is:
...
SyntaxError: unexpected EOF while parsing
+ 1
c, b, a
But you forgot one closing bracket at the end.