HarvardCS50/pset6/hello.py

4 lines
86 B
Python

from cs50 import get_string
s = get_string("What is your name?")
print(f"hello, {s}")