April 2018
Beginner
552 pages
13h 58m
English
Create the following script, bouncingball.py:
#!/usr/bin/python3 # bouncingball.py import tkinter as TK import time VERT,HOREZ=0,1 xTOP,yTOP = 0,1 xBTM,yBTM = 2,3 MAX_WIDTH,MAX_HEIGHT = 640,480 xSTART,ySTART = 100,200 BALL_SIZE=20 RUNNING=True
def close(): global RUNNING RUNNING=False root.destroy() def move_right(event): if canv.coords(paddle)[xBTM]<(MAX_WIDTH-7): canv.move(paddle, 7, 0) def move_left(event): if canv.coords(paddle)[xTOP]>7: canv.move(paddle, -7, 0) def determineDir(ball,obj): global delta_x,delta_y ...