Advertisement
gorskaja2019

Untitled

Apr 24th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. from tkinter import*
  2. from random import *
  3. from time import *
  4.  
  5. class Ball:
  6. def __init__(self, canvas, color):
  7. self.canvas = canvas
  8. self.id = canvas.create_oval(10,10,25,25,fill=color)
  9. self.canvas.move(self.id, 225, 180)
  10.  
  11. root = Tk()
  12. root.title('Пинг-понг')
  13. canvas = Canvas(width = 500, height = 400, bg = 'deepskyblue')
  14. canvas.pack()
  15.  
  16. ball = Ball(canvas, 'red')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement