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
| 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) |