Question: What does the following code display? mystr = 'abc' * 3 print(mystr)
What does the following code display?
mystr = 'abc' * 3
print(mystr)
Step by Step Solution
3.35 Rating (155 Votes )
There are 3 Steps involved in it
mystr abc 3 printmystr The operator is used to multiply strings ... View full answer
Get step-by-step solutions from verified subject matter experts
