CS50_Labs/Lab6/sentimental/hello.py

5 lines
136 B
Python

from cs50 import get_string
# asks user for his name and says hello
answer = get_string("What's your name? ")
print("hello, " + answer)