diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 06:40:12 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 06:40:12 +0000 |
commit | 011cd25c10178bf34e3ce50cf9b5e7955393846d (patch) | |
tree | fdca4f89ae8d76a22c9be4ce0c4fec7fb8e81fa1 /wk6/lect/sentimental-hello | |
parent | bef7a6a56ef7d99262cf600d8fcd66ee93cbe9ca (diff) |
Thu, May 2, 2024, 11:40 PM -07:00
Diffstat (limited to 'wk6/lect/sentimental-hello')
-rw-r--r-- | wk6/lect/sentimental-hello/hello.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wk6/lect/sentimental-hello/hello.py b/wk6/lect/sentimental-hello/hello.py index e69de29..b3c15b9 100644 --- a/wk6/lect/sentimental-hello/hello.py +++ b/wk6/lect/sentimental-hello/hello.py @@ -0,0 +1,4 @@ +from cs50 import get_string + +answer = get_string("What's your name? ") +print("hello, " + answer) |