Answer the question
In order to leave comments, you need to log in
SyntaxError: invalid syntax. I tried most of the solutions, what should I do?
Hello. I just started learning python and wanted to write a simple program, but when I run it, it gives an error and I don't understand why. I searched the Internet but did not find a solution.
name = input("как тебя зовут дружище?")
age = input("Привет" + name + "А сколько тебе лет?")
gender = input("А какого ты пола" + name + "?")
if gender "Мужчина":
print("Привет" + name + "тебе уже" + age + "да ты пажилой дед")
if gender "Женщина":
print("Привет" + name + "тебе уже" + age + "да ты пажилая как бы")
else:
input("Я тебя не понимаю:(")
Answer the question
In order to leave comments, you need to log in
name = input("как тебя зовут дружище?")
age = input("Привет" + name + "А сколько тебе лет?")
gender = input("А какого ты пола" + name + "?")
if gender=="Мужчина":
print("Привет" + name + "тебе уже" + age + "да ты пажилой дед")
if gender =="Женщина":
print("Привет" + name + "тебе уже" + age + "да ты пажилая как бы")
else:
input("Я тебя не понимаю:(")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question