Jul-07-2021, 03:48 PM
I'm trying to convert strings to numbers, to multiply both numbers, when i print it out.. It still warns me its 2 strings
1 2 3 4 5 6 7 8 |
num = input ( "Enter a number to CUBE: " ) def cube(): print ( int (num * num * num)) cube() |