Skip to content

Commit f9b0ca6

Browse files
try
1 parent 0f8c2dc commit f9b0ca6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

18-2.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
def main():
2+
file = open("swan/plus.png", "rb")
3+
bs = []
4+
while True:
5+
b = file.read()
6+
if b:
7+
bs.append(b)
8+
else:
9+
break
10+
print(bs)
11+
12+
13+
if __name__ == "__main__":
14+
main()

0 commit comments

Comments
 (0)