cs50/src6/1/hello1.py

7 lines
141 B
Python

# get_string and print, with concatenation
from cs50 import get_string
answer = get_string("What's your name? ")
print("hello, " + answer)