Fork Python 1 Question 12

Last Updated :
Discuss
Comments

What is the output of the following code?

Python
num1 = "5"
num2 = 3
result = num1 * num2
print(result)

15


 

"555"

8

"333"

Share your thoughts in the comments