+ 1
What is the output of this code
Ă = "a" Ă * =3 Print (Ă)
4 Answers
+ 10
Michael , the code will not run, because there is at leat 1 error in each line:
Ă = "a" # Ă is not the character x but the multiplication sign U215, this is not allowed as variable name
Ă * =3 # same as above, rest should be *= 3
Print (Ă) # print() has to be in lower case letter, Ă is not the character x but the multiplication sign U215
Additionally: please do not post the same question multiple times. Thanks!
+ 4
That's 3 lines.
Put them in Playground and try it out đ
+ 3
Use playground to see the output..
0
Try this:
x = "a"
x *= 3
print(x)
You just added a space betweeen * and =
Syntax errror