commit e799ee94bf2def9b782f870d0c884d09513b333e Author: kukemuna Date: Fri Mar 22 09:35:28 2024 +0200 automated commit by check50 [check50=True] 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")