diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed8ebf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ \ No newline at end of file diff --git a/ciglib.py b/ciglib.py new file mode 100644 index 0000000..4647db9 --- /dev/null +++ b/ciglib.py @@ -0,0 +1,8 @@ +class fgColor: + GREEN = '\033[92m' + RED = '\033[91m' + YELLOW = '\033[93m' + PURPLE = '\033[95m' + CYAN = '\033[96m' + GRAY = '\033[90m' + NC = '\033[0m' \ No newline at end of file diff --git a/cost-of-smokes.py b/cost-of-smokes.py index f2913c4..5f419a4 100644 --- a/cost-of-smokes.py +++ b/cost-of-smokes.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -#user input dolloars +#user input dollars #user input number of packs #output day, week, month year costs import os