O
O
ONEoftheFIRST2020-05-08 14:48:27
Python
ONEoftheFIRST, 2020-05-08 14:48:27

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

1 answer(s)
S
Sanya Hihi Haha, 2020-05-08
@ONEoftheFIRST

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 question

Ask a Question

731 491 924 answers to any question