внутренние скобки внутри строки продолжают краснеть, и я думаю, что это вызывает синтаксическую ошибку, в частности первое выражение print, когда я запускаю его в командной строке терминала.
print(f"Hi {user_name}, Im the {script} script")
^
SyntaxError: invalid syntax
Я пытался найти его в Google, заменив скобки (методом проб и ошибок) и попробовав YouTube, подумал, что это будет работать лучше
from sys import argv
script, user_name=argv
prompt="> "
print(f"Hi {user_name}, im the {script} script")
print("Id like to ask you a few questions")
print(f"do you like me {user_name}?")
likes=input(prompt)
print(f"where do you live {user_name}?")
lives=input(prompt)
print("what kind of computer do you have?")
computer=input(prompt)
print(f"""
Alright, so you said {likes} about liking me.
You live in {lives}. Not sure where that is.
And you have a {computer} computer. Nice
""")