initial creation

This commit is contained in:
2025-05-20 11:57:43 -04:00
commit c98b612926
8447 changed files with 1862526 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env python
# print out a file 10 bytes at a time
with open("../DATA/parrot.txt", "rb") as parrot_in: # <1>
while True:
chunk = parrot_in.read(10) # <2>
if chunk == b"": # <3>
break
print(chunk.decode()) # <4>