This commit is contained in:
Fomys 2019-02-25 18:06:58 +01:00
commit 3d49e9050f
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
# Fractale
Défi de la semaine, fractale
Défi de la semaine, fractale
# Dépendances
- Pillow, `pip install pillow`

BIN
fractal.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

5
main.py Normal file
View File

@ -0,0 +1,5 @@
from PIL import Image
# Display the generated fractal
img = Image.open("fractal.png")
img.show()