Untitled

mail@pastecode.io avatar
unknown
abc
3 years ago
519 B
1
Indexable
Never
from sys import argv
script, user_name = argv
prompt = '>'

print(f"hi {user_name}, i'm the {script} script.")
print("i'd 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
""")