0
confusid
>>> x = "a" >>> x *= 3 print(x) i put a3 and 3a and =3a but it says its wrong so i dont know what to do
2 Answers
0
Which language is it and what is the outcome you expect?
0
Do not use this symbol '>>>'
Just this will do and it works.
x = "a"
x*=3
print(x)



