Я играю с Python3, и каждый раз, когда я запускаю код Python3 ex14.py
ниже и печатаю (f"Hi {user_name}, I'm the {script} script.")
, я получаю {user_name}
правильно, но {script}
показывает файл, который я запускаю, плюс переменную {user_name}
from sys import argv
script = argv
prompt = '> '
# If I use input for the user_name, when running the var script it will show the file script plus user_name
print("Hello Master. Please tell me your name: ")
user_name = input(prompt)
print(f"Hi {user_name}, I'm the {script} script.")
Как мне распечатать только файл, который я запускаю?