Skip to content

Instantly share code, notes, and snippets.

View chasewright's full-sized avatar

Chase Wright chasewright

  • Self
  • Chattanooga, TN
View GitHub Profile
@chasewright
chasewright / fizzbuzz
Created July 19, 2016 18:08
FizzBuzz game with user input
import time
import sys
# first attempt at fizzbuzz
#define range of integers
#where the script is located
print("The name of this script is {}".format(sys.argv[0]))
#let the user read before being questioned
time.sleep(2)