+ 1
what's wrong with this code
look at this python code and help me https://code.sololearn.com/c07Nxh5TPV08/?ref=app
2 Answers
+ 15
In line 1, you have not closed the parenthesis for int() function. You just closed the parenthesis for input() i.e. there must be two closing parenthesis after input.
You can replace the first line of your code with the below line.
age = int(input("type your age please :\n"))
Hope This Helps !!!
+ 1
thank you đđ.
i was searching the error for 3 hoursđđ