Skip to content

Instantly share code, notes, and snippets.

View jaredreser's full-sized avatar

jaredreser

View GitHub Profile
@jaredreser
jaredreser / PY0101EN-1-1-Types.ipynb
Created March 4, 2020 06:04
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jaredreser
jaredreser / FavoriteNumber.py
Last active March 4, 2020 08:41
What is Your Favorite Number? A Simple Script For Python Beginners
import time
print("So...")
time.sleep(2)
print("Let's get down to business.")
time.sleep(2)
favnum = int(input("What is your favorite number? "))
time.sleep(2)
print("Ok.")
time.sleep(1)
print("That's a good one.")