What is the result of this code? >>> x = "a" >>> x *= 3 print(x) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the result of this code? >>> x = "a" >>> x *= 3 print(x)

25th Mar 2020, 4:50 AM
Ugochukwu Celestine
1 Answer
+ 1
Here a will print 3 times x = "a" x *= 3 x = "a" * 3 = aaa when we multiply any string with number n that string will print n times.
25th Mar 2020, 5:54 AM
A͢J
A͢J - avatar