This commit is contained in:
louiscklaw
2025-01-31 21:15:04 +08:00
parent 3337cc3d1e
commit acf9d862ff
324 changed files with 43162 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,6 @@
Dear John Lee,
Thank you for purchasing Laster Printer X50.
Wish you Merry Christmas and Happy New year!
Regards,
Company LU

View File

@@ -0,0 +1,6 @@
Dear Eric Chan,
Thank you for purchasing Laster Printer X51.
Wish you Merry Christmas and Happy New year!
Regards,
Company LU

View File

@@ -0,0 +1,6 @@
Dear Paul Chan,
Thank you for purchasing LED Monitor M310.
Wish you Merry Christmas and Happy New year!
Regards,
Company LU

View File

@@ -0,0 +1,4 @@
000001, John Lee, Laster Printer X50
000002, Eric Chan, Laster Printer X51
000003, Paul Chan, LED Monitor M310
-1

View 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")

BIN
max015/T07/deliver/txt_content.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -0,0 +1,13 @@
Disney, Ocean Park
Hotel ICON, Ocean Park
Hotel ICON
Ocean Park
Disney, Ocean Park
Hotel ICON, Ocean Park
Hotel ICON
Ocean Park
Disney, Ocean Park
Hotel ICON, Ocean Park
Hotel ICON
Ocean Park
-1