Skip to content

Commit 2fd41c8

Browse files
authored
Merge pull request #2 from edyoda/Prithvi45-patch-2
Create project pizza store
2 parents 3ee42d1 + f6ba730 commit 2fd41c8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

project pizza store

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# product={'onion pizza':[10,'Rs.49'],
2+
# 'Golden Corn Pizza':[10,'Rs.49'],
3+
# 'Paneer Cheese Pizza':[10,'Rs.99']}
4+
product={
5+
'1':["Onion Pizza","Rs.49",10],
6+
'2':["Paneer Pizza","Rs"]
7+
}
8+
print "\n"
9+
print "Welcome to The Pizza Store"
10+
print "==============================="
11+
for key,val in product.items():
12+
print key + " - " + val[1]
13+
print "\n"
14+
# help(dict)
15+
user_order =

0 commit comments

Comments
 (0)