- 8
>>>x="a" x *=3 print(x)
Каким будет резултат?
8 Antworten
0
x="a"
x*=3
which implies x=x+3
replace x with "a"
print("a"*3)
- 1
aaa
- 1
aaa
- 2
cheers buddys
- 2
output is
aaa
- 2
12
- 3
x = 4
x *= 3
print(x)
- 4
you have to break it up, IE one item per line :
x="a"
x *=3
print(x)