摘要: python -m pygame.examples.aliens import pygame pygame.init() # 编写邮箱代码 print("游戏代码") pygame.quit() import pygame # 定义hero_rect矩形描述英雄的位置和大小 hero_rect = 阅读全文
posted @ 2019-08-27 21:17 才华配得上梦想 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1.安装Python3.6 安装准备 编译安装 将默认Python修改为Python3.6,并为其创建软连接 修改yum使用的原python的配置文件 2.安装pip3 安装pip依赖库 如果安装上述依赖库出现以下报错:Delta RPMs disabled because /usr/bin/app 阅读全文
posted @ 2019-08-27 19:28 才华配得上梦想 阅读(2656) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-08-27 18:58 才华配得上梦想 阅读(87) 评论(0) 推荐(0) 编辑
摘要: python2 字符串 阅读全文
posted @ 2019-08-27 18:46 才华配得上梦想 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 文本文件 二进制文件 # 打开文件 file = open("README") # 读取文件 text = file.read() print(text) # 关闭文件 file.close() # 打开文件 try: file = open("README") except Exception a 阅读全文
posted @ 2019-08-27 08:48 才华配得上梦想 阅读(77) 评论(0) 推荐(0) 编辑
摘要: from distutils.core import setup setup(name=“hm_message”, # 包名version=“1.0”, # 版本description=“itheima’s 发送和接收消息模块”, # 描述信息long_description=“完整的发送和接收消息 阅读全文
posted @ 2019-08-27 07:58 才华配得上梦想 阅读(83) 评论(0) 推荐(0) 编辑