Skip to content

Instantly share code, notes, and snippets.

@stahnni
stahnni / Move image across
Created March 7, 2017 13:00
use tkinter to move an image across screen
"""Try displaying a photo of yourself on the canvas using tkinter.
Make sure it’s a GIF image! Can you make it move across the
screen?"""
import time
from tkinter import *
tk = Tk()
w = 500
h = 500
canvas = Canvas(tk, width=w, height=h)