update,
This commit is contained in:
18
max015/T07/test.py
Normal file
18
max015/T07/test.py
Normal file
@@ -0,0 +1,18 @@
|
||||
#edit this cell to write the program
|
||||
|
||||
hotel = []
|
||||
|
||||
with open("./votes.txt",'r') as fi:
|
||||
lines = fi.readlines()
|
||||
for l in lines:
|
||||
l2 = l.strip()
|
||||
hotel.extend(l2.split(', '))
|
||||
|
||||
|
||||
print("Disney: " + str(hotel.count("Disney")))
|
||||
print("Hotel ICON: " + str(hotel.count("Hotel ICON")))
|
||||
print("Ocean Park: " + str(hotel.count("Ocean Park")))
|
||||
|
||||
|
||||
|
||||
print("helloworld")
|
Reference in New Issue
Block a user