Compare commits

..

4 Commits

Author SHA1 Message Date
d4394e419c Merge pull request 'Additions and fixes' (#1) from mollusk/cig-cost:master into master
Reviewed-on: #1
2020-09-19 13:48:36 +00:00
e1e78aae6e Add ciglib.py 2020-09-18 23:27:30 -07:00
f64d92dc61 Add ignore file 2020-09-18 23:27:10 -07:00
b971cec1bc correct spelling in comment 2020-09-17 23:23:36 -07:00
3 changed files with 10 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__

8
ciglib.py Normal file
View File

@ -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'

View File

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