commit 398382e5858ed80f863d7d539f24bdb5192eb6d5 Author: bot50 Date: Fri Mar 22 07:36:11 2024 +0000 kukemuna-cs50/problems/2024/x/sentimental/hello@20240322T073611.396688742Z 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")