Модуль time некорректно делает задержку в коде
Есть код:
from time import sleep
from tkinter import *
tk = Tk()
tk.title("Арканоид")
tk.resizable(0, 0)
tk.wm_attributes("-topmost", 1)
canvas = Canvas(tk, width=500, height=600, bd=0, highlightthickness=0)
canvas.pack()
tk.update()
class Ball:
def __init__(self, canvas, color):
self.canvas = canvas
self.id = canvas.create_oval(10, 10, 25, 25, fill=color)
self.canvas.move(self.id, 250, 250)
self.x = 1
self.y = -1
self.canvas_height = self.canvas.winfo_height()
self.canvas_width = self.canvas.winfo_width()
def draw(self):
self.canvas.move(self.id, self.x, self.y)
pos = self.canvas.coords(self.id)
if pos[1] <= 0:
self.y = 1
if pos[3] >= self.canvas_height:
self.y = -1
if pos[0] <= 0:
self.x = 1
if pos[2] >= self.canvas_width:
self.x = -1
ball = Ball(canvas, "red")
while 1:
try:
ball.draw()
tk.update_idletasks()
tk.update()
sleep(0.000000005)
except:
pass
Но time.sleep делает маленькую задержку, какую бы я не ставил. Делал по уроку с YouTube, пишу в PyCharm