+ 4
print(float "210" * int(input("Enter another number: ")))
could someone explain this with the correct code. I tried this code and getting error
6 Antworten
+ 8
print (float (210)*int (input.....
the float function requires () just like int, str, and any other function.
+ 3
print("210" * int(input("Enter another number: ")))
or may be you whant this
print(210 * int(input("Enter another number: ")))
+ 1
thank you guys
+ 1
Thank you very much !!!
0
thanks!
0
print (int("210")*int(input("enter another number")))