bot50 2024-03-22 07:36:11 +00:00
commit 398382e585
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")