pygame画板2020617版

pygame画板2020617版

李兴球Python的pygame画板
李兴球Python的pygame画板

李兴球Python的pygame画板

"""
   pygame画板2020617版
"""
import pygame
from pygame.locals import *

screen = pygame.display.set_mode((480,360))
pygame.display.set_caption("pygame画板2020617版")

drawing = False
last_pos = None
pencolor = (255, 0, 255)

running = True
while running:
    for event in pygame.event.get():               # 遍历每个事件
        if event.type == QUIT:running = False      # 事件类型为退出
            pass                                   # 此处代码省略

pygame.quit()

需要所有源代码,请

成为会员后,登陆才能继续浏览!联系微信scratch8即可办理会员。
(会员专属:能浏览所有文章,下载所有带链接的Python资源。)

李兴球

李兴球的博客是Python创意编程原创博客