Код Python:
e_mail=input("enter your mail adress").strip().lower()
print(f"hello your name is {e_mail[:e_mail.index("@")].capitalize()}")
Сообщение об ошибке:
print(f"hello your name is {e_mail[:e_mail.index("@")].capitalize()}")
^
SyntaxError: f-string: unmatched '('
Подробнее здесь: https://stackoverflow.com/questions/781 ... ython-code