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

11th May 2020, 6:01 PM
Logan McEwen
Logan McEwen - avatar
2 Answers
0
Which language is it and what is the outcome you expect?
11th May 2020, 6:05 PM
Manu_1-9-8-5
Manu_1-9-8-5 - avatar
0
Do not use this symbol '>>>' Just this will do and it works. x = "a" x*=3 print(x)
11th May 2020, 6:10 PM
Avinesh
Avinesh - avatar