EOF error | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
- 1

EOF error

Why my code is showing an error here? x=int(input(ā€œenter a numberā€) y=int(input(ā€œenter another oneā€) p=x*y print(p)

9th Jan 2022, 4:00 AM
Knowledge Is Power
Knowledge Is Power - avatar
3 Respostas
+ 4
You need to input two values since there are two input variables. If you're trying this on Sololearn, separate them in a new line. 6 7
9th Jan 2022, 6:14 AM
Simba
Simba - avatar
+ 2
Use apostrophe "enter a number" The one you have used is not valid one.
9th Jan 2022, 4:21 AM
Krish
Krish - avatar
0
And I think you did not close int() x = int(input("enter a number")) y = int(input("enter another one")) <- the first one closes intput(), the second one closes int()
9th Jan 2022, 8:35 AM
Denise RoƟberg
Denise RoƟberg - avatar