cs50/hello.py

7 lines
105 B
Python
Raw Normal View History

name = input("What's your name? ")
if name:
print(f"hello, {name}")
else:
print("hello, world")