import ...
root = Tk()
c = Canvas(root, width=1000, height=1000)
c.pack()
a = c.create_rectangle(...) #Тут дополните
b = c.create_rectangle(...)
c.bind_all('<KeyPress-Up>', moveUp)
#здесь другие байндинги
while True:
c.move(b, 1, 1)
root.update()