bot50 2024-03-22 07:35:32 +00:00
commit ad335f334e
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")