CS50_Labs/Lab6/sentimental/hello.py

5 lines
136 B
Python
Raw Permalink Normal View History

2024-08-09 17:43:54 +00:00
from cs50 import get_string
# asks user for his name and says hello
answer = get_string("What's your name? ")
print("hello, " + answer)