摘要: 01跳跃的小球 import sys # 导入sys模块 import pygame # 导入pygame模块 pygame.init() # 初始化pygame size = width,height= 1000,800 # 设置窗口 screen = pygame.display.set_mod 阅读全文
posted @ 2022-12-01 23:45 crz~~ 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 实例01 import sqlite3 conn=sqlite3.connect('mrsoft.db') cursor=conn.cursor() cursor.execute('create table user (id int(10) primary key name varchar(20)) 阅读全文
posted @ 2022-12-01 14:10 crz~~ 阅读(45) 评论(0) 推荐(0) 编辑