Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from PIL import Image
image = Image.open("lake.png")
width, height = image.size
arrows = 0
for x in range(width):
for y in range(height):
arrows = arrows + image.getpixel((x,y))
print(arrows)