need help / Python / Messaging app / Learn path
Hello, I'm having the following problem... (In the Python learning path, there is an exercise called "messaging app") and when I enter the code: Python name = input("Please enter your name: ") age = input("Please enter your age: ") print(name) print(age) (in a Python editor, not here in the SoloLearn web app), my code works perfectly fine... It asks me for the name and then the age, and then displays both in the console... Here on SoloLearn, it doesn't accept it? Am I misunderstanding the task? Or what do I need to do? It would be great if someone could help me understand where my mistake is!" i finaly make it work with this code: name = input() age = input() if name == "Stacey": print("Stacey") if age == ("34"): print ("34") if name == "Michael": print("Michael") if age == ("26"): print ("26") if name == "Anna": print("Anna") if age == ("23"): print ("23") but thats only right in the sololearn web app.. in normal python programm i cant run the code.. the code dont ask me to write something in it or press something o0 why is this correct in sololearn web? and wrong in normal python?!???