Advertisement
Philipou

Untitled

Jan 13th, 2025
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. #Drapeau allemand
  2.  
  3. img =Image.new("RGB",(300,200))
  4. largeur, hauteur = img.size
  5. for colonne in range(largeur):
  6.     for ligne in range(hauteur):
  7.         if ligne < 66:
  8.             img.putpixel((colonne, ligne),(0,0,0))
  9.         elif (ligne >= 66) and (ligne < 132):
  10.             img.putpixel((colonne, ligne),(255,0,0))
  11.         elif ligne >= 132:
  12.             img.putpixel((colonne, ligne),(200,200,0))
  13. img.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement