cs50/src6/1/hello3.py

5 lines
103 B
Python

# input and print, with format strings
answer = input("What's your name? ")
print(f"hello, {answer}")