From ad335f334effca52533b257390aa5c115f23df17 Mon Sep 17 00:00:00 2001 From: bot50 Date: Fri, 22 Mar 2024 07:35:32 +0000 Subject: [PATCH] kukemuna-cs50/problems/2024/x/sentimental/hello@20240322T073532.403497771Z --- hello.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.py diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..4cb3b67 --- /dev/null +++ b/hello.py @@ -0,0 +1,6 @@ +name = input("What's your name? ") + +if name: + print(f"hello, {name}") +else: + print("hello, world")