0
Why doesn't it work?
I tried to make a multiplicatiob table...thank you https://code.sololearn.com/cWB0C3JMaGF6/?ref=app https://code.sololearn.com/cWB0C3JMaGF6/?ref=app
1 Respuesta
+ 2
It doesn't work, because you didn't add the result to the string, and x * 1 has to be a string
x = 10
print("10 * 1 = " + str(x * 1))
Alternatively, you can use a comma:
x = 10
print("10 * 1 = ", x * 1)