Created
March 3, 2022 17:05
-
-
Save Tyler887/c4f89c741270e8cf7282774c68cdaf76 to your computer and use it in GitHub Desktop.
Python Hello World
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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