Skip to content

Instantly share code, notes, and snippets.

@Tyler887
Created March 3, 2022 17:05
Show Gist options
  • Save Tyler887/c4f89c741270e8cf7282774c68cdaf76 to your computer and use it in GitHub Desktop.
Save Tyler887/c4f89c741270e8cf7282774c68cdaf76 to your computer and use it in GitHub Desktop.
Python Hello World
print("Hello world!")
name = input("What's your name?")
print(f"Hello, {name}!")
import time
time.sleep(2)
exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment