Skip to content

Instantly share code, notes, and snippets.

@fanglinlo
fanglinlo / python
Created April 17, 2018 14:11
pinpon_game
import tkinter
import random
import time
tk=tkinter.Tk()
tk.title("Game") #窗口名稱
tk.resizable(0,0) #表示畫面大小不能被拉
tk.wm_attributes("-topmost",1) #視窗移到最上層
canvas=tkinter.Canvas(tk,width=700,height=700,bd=0)