what is syntax error in this python code? [closed]
Closed 21 mins ago.
what is syntax error in this python code? [closed]
Closed 21 mins ago.
what is syntax error in this python code? [closed]
Closed 21 mins ago.
what is syntax error in this python code? [closed]
Closed 21 mins ago.
what is syntax error in this python code? [closed]
Closed 21 mins ago.
what is syntax error in this python code? [closed]
Closed 21 mins ago.
How can I add “.title” to the name gotten from user?
print(“What is your name:”) the_name= input() print(“How old are you?”) the_age= int(input()) if the_age>=18: print(“What is your major in university?”) major= input() print(“Really nice”) elif the_age<=18 : print(f”you said your name is {the_name}, is that right? “) the_answer= input() print(“Good job”) if the_answer is True else print(None) else: print(“Have a nice day”) I want to […]