摘要: alien_invasion.py import pygame from pygame.sprite import Sprite class Ship(Sprite): def __init__(self,ai_settings,screen): super().__init__() self.sc 阅读全文
posted @ 2019-07-23 20:15 pywhy 阅读(210) 评论(0) 推荐(0) 编辑
摘要: import random def code_creat(): codes = '' """创建四位验证码""" for n in range(4): current = random.randrange(0,4) if current != n: code_o = str(random.randint(0,9))... 阅读全文
posted @ 2019-07-23 20:01 pywhy 阅读(141) 评论(0) 推荐(0) 编辑