automated commit by check50 [check50=True]

This commit is contained in:
kukemuna 2024-03-22 09:35:28 +02:00
commit e799ee94bf
1 changed files with 6 additions and 0 deletions

6
hello.py Normal file
View File

@ -0,0 +1,6 @@
name = input("What's your name? ")
if name:
print(f"hello, {name}")
else:
print("hello, world")