Advertisement
here2share

# Tk_seq_shuffle_3.py

Apr 15th, 2022
1,113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.72 KB | None | 0 0
  1. # Tk_seq_shuffle_3.py
  2.  
  3. from tkinter import *
  4. from PIL import Image, ImageTk
  5. from itertools import combinations
  6.  
  7. ww = 600
  8. hh = 600
  9.  
  10. def draw():
  11.     image.putdata(rgb)
  12.     photo = ImageTk.PhotoImage(image)
  13.     canvas.create_image(0,0,image=photo,anchor=NW)
  14.     canvas.update()
  15.    
  16.  
  17. root = Tk()
  18. root.title("Tk_seq_shuffle")
  19. root.geometry("%dx%d+0+0"%(ww,hh))
  20.    
  21. canvas = Canvas(root, width=ww, height=hh)
  22. canvas.pack()
  23.  
  24. image = Image.new("RGB", (ww,hh), (255,255,255))
  25.  
  26. colors = [(255,0,0),(0,0,255),(255,255,0)]*10000
  27. L = len(colors)
  28.  
  29. i = 1
  30. rgb = [(0,0,0)]*(ww*hh)
  31.  
  32. while 1:
  33.     ttt = []
  34.     for x in range(ww):
  35.         i += 1
  36.         t = colors.pop(i%L)
  37.         ttt += [t]
  38.         colors += [t]
  39.     rgb.extend(ttt)
  40.     rgb = rgb[-ww*hh:]
  41.     draw()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement