Skip to content

Commit 794552e

Browse files
committed
Add codes for a simple vending machine and parse csv along with the required files.
1 parent d740b0e commit 794552e

6 files changed

+112
-0
lines changed

college.csv

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
branch,cgpa,name,year
2+
COE,9.0,Nikhil,2
3+
COE,9.1,Sanchit,2
4+
IT,9.3,Aditya,2
5+
SE,9.5,Sagar,1
6+
MCE,7.8,Prateek,3
7+
EP,9.1,Sahil,2

employee.csv

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name,department,birthday month
2+
John Smith,Accounting,November
3+
Erica Meyers,IT,March
4+
David Warne,Accounting,April
5+
May Myers,IT,October
6+
Ryan Gosling,HR,November

parse_csv.py

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import csv
2+
#read from csv
3+
fields=list()
4+
rows=list()
5+
with open('employee.csv','r') as csv_file:
6+
csv_reader=csv.reader(csv_file)
7+
fields=next(csv_reader) #csv reader object
8+
for row in csv_reader:
9+
rows.append(row)
10+
print("Total no. of rows={}".format(csv_reader.line_num))
11+
print("Field Names are:"+",".join(field for field in fields))
12+
print("First 5 rows are:\n")
13+
for row in rows[:5]:
14+
for col in row:
15+
print("{}".format(col),end=" "),
16+
print("\n")
17+
#write to csv
18+
flds=['Name','Branch','Year','CGPA']
19+
rw= [['Nikhil', 'COE', '2', '9.0'],
20+
['Sanchit', 'COE', '2', '9.1'],
21+
['Aditya', 'IT', '2', '9.3'],
22+
['Sagar', 'SE', '1', '9.5'],
23+
['Prateek', 'MCE', '3', '7.8'],
24+
['Sahil', 'EP', '2', '9.1']]
25+
with open("university.csv",'w') as csvfile:
26+
csvwriter=csv.writer(csvfile)
27+
csvwriter.writerow(flds)
28+
csvwriter.writerows(rw)
29+
#write dictionary to csv
30+
31+
mydict =[{'branch': 'COE', 'cgpa': '9.0',
32+
'name': 'Nikhil', 'year': '2'},
33+
{'branch': 'COE', 'cgpa': '9.1',
34+
'name': 'Sanchit', 'year': '2'},
35+
{'branch': 'IT', 'cgpa': '9.3',
36+
'name': 'Aditya', 'year': '2'},
37+
{'branch': 'SE', 'cgpa': '9.5',
38+
'name': 'Sagar', 'year': '1'},
39+
{'branch': 'MCE', 'cgpa': '7.8',
40+
'name': 'Prateek', 'year': '3'},
41+
{'branch': 'EP', 'cgpa': '9.1',
42+
'name': 'Sahil', 'year': '2'}]
43+
44+
with open("college.csv",'w',newline='') as cv:
45+
fieldnames=["branch","cgpa","name","year"]
46+
writer=csv.DictWriter(cv,fieldnames=fieldnames)
47+
writer.writeheader()
48+
writer.writerows(mydict)
49+
with open("college.csv",'r') as cvf:
50+
reader=csv.DictReader(cvf)
51+
for row in reader:
52+
print(row['name'],row['branch'])

simple_vending_machine.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
a=dict()
2+
key_list=list()
3+
def readFile():
4+
with open("vendingitems.txt",'r') as f:
5+
for line in f:
6+
(k,v)=line.strip().split('|')
7+
a[k]=int(v)
8+
key_list=a.keys()
9+
print("Items available in vending machine",key_list)
10+
11+
def vendingMachine():
12+
readFile()
13+
while True:
14+
item=input("Enter item name\n")
15+
if(item in a.keys()):
16+
print("Valid Item Name")
17+
#break
18+
cash=int(input("Enter money to deposit\n"))
19+
if(isinstance(cash,int)==False):
20+
print("Bad Input {}\n Try Again!".format(str(cash)))
21+
#continue
22+
else:
23+
if(cash>a[item]):
24+
print("Thank you for your purchase.Enjoy\n")
25+
print("Do not forget to collect your change,{} Rs".format(cash-a[item]))
26+
break
27+
else:
28+
print("Not enough Money to but the item\n")
29+
continue
30+
else:
31+
print("Available Items are {} ,\nTry Again!".format(a.keys()))
32+
continue
33+
34+
35+
vendingMachine()

university.csv

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Name,Branch,Year,CGPA
2+
Nikhil,COE,2,9.0
3+
Sanchit,COE,2,9.1
4+
Aditya,IT,2,9.3
5+
Sagar,SE,1,9.5
6+
Prateek,MCE,3,7.8
7+
Sahil,EP,2,9.1

vendingitems.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Potato Chips|20
2+
Popcorn|30
3+
Chocolate|15
4+
Biscuit|10
5+
Soft Drink|12

0 commit comments

Comments
 (0)