Advertisement
here2share

# Tk_seq_shuffle_6.py

Apr 16th, 2022
876
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.87 KB | None | 0 0
  1. # Tk_seq_shuffle_6.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)]*1000
  27. L = len(colors)
  28.  
  29. i = 1
  30. rgb = [(0,)*3]*(ww*hh)
  31. bar = [(0,)*3]*9+[(255,)*3]*15
  32. sss = ''.join([str(i) for i in range(ww)])
  33.  
  34. while 1:
  35.     ttt = []
  36.     while len(ttt) < ww+100:
  37.         if len(sss) < ww*2:
  38.             sss += str(i)
  39.             i += 1
  40.         a = int(sss[0])
  41.         b = int(sss[1])
  42.         sss = sss[2:]
  43.         ttt.extend(bar[a:-b])
  44.     rgb.extend(ttt[100:ww+100])
  45.     rgb = rgb[-ww*hh:]
  46.     draw()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement