零基础学 Python(2023 版)
尹会生
太乙人工智能技术合伙人 & 项目总监
60050 人已学习
新⼈⾸单¥68
课程目录
已完结/共 124 讲
结束语 & 结课测试 (2讲)
零基础学 Python(2023 版)
登录|注册
留言
7
收藏
沉浸
阅读
分享
手机端
回顶部
当前播放: 49|函数的定义:如何优雅地反复引用同一段代码?
00:00 / 00:00
高清
  • 高清
1.0x
  • 2.0x
  • 1.5x
  • 1.25x
  • 1.0x
  • 0.75x
  • 0.5x
网页全屏
全屏
00:00
付费课程,可试看
课程介绍:这次我们都做了哪些升级?
内容综述:明确学习目的
01|如何配置 Python 开发环境?
02 | 常用 IDE:如何提高开发效率?
03 | 如何站在官方文档的肩膀上自己“造轮子”?
04 | 怎样运行你的第一行代码?
05 | 怎样使用 Gitee 管理你的代码?
06 | 学习编程有问题?去这里找答案!
07|跨越门槛:Python 开发环境总结及实现原理
08 | 修炼基本功:浅析输入输出
09 | 变量:如何让计算机临时存储数据?
10|字符串(上):Python 是如何处理单词的?
11|字符串(下):Python 是如何处理单词的?
12|存储数字应该采用哪种数据类型?
13|何时使用数,何时使用字符串?
14|注释:如何写程序的说明书?
15|小试牛刀:如何制作简单计算器?
16|变量命名规范:如何编写优雅的程序?
17|告别新手村:Python 编程基础知识
18|内置数据类型包括哪几种?
19|列表如何处理同类数据?
20|常见常新:列表的常见操作
21|元组:如何处理一次性数据?
22|常见常新:集合的常见操作
23|字典:如何处理映射类型的数据?
24|常见常新:字典的常见操作(上)
25|常见常新:字典的常见操作(下)
26|小试牛刀:如何利用类型转换实现手机通讯录?(上)
27|小试牛刀:如何利用类型转换实现手机通讯录?(下)
28|常见的内置数据类型都何时使用?
29|避坑指南:内置数据类型的常见错误
30|内置数据类型参考:如何使用官方文档与帮助?
31|再回首:“内置数据类型”单元小结
32|if 语句:数据流程出现分支时,怎样编写程序?
33|match 语句:如何通过 match 关键字来处理程序的分支逻辑?
34|while 循环:需要多次重复执行某段程序时,怎么做?
35|for 循环:如何遍历一个对象里的所有元素?
36|语句嵌套:如何处理多重循环的问题?
37|小试牛刀:如何设计一个飞机大战的程序?
38|避坑指南:判断和循环中的常见错误
39|再回首:“判断循环”单元小结
40|输入:如何接收用户通过键盘输入的数据?
41|格式化输出:如何将执行结果通过屏幕输出?
42|F-strings:如何通过定义好的格式进行输出?
43 | 常见常新:文件的打开
44|文件编码:如何解决不同操作系统的文件乱码问题?
45|常见常新:文件的读写
46|常见常新:文件的关闭
47|小试牛刀:如何使用 Python 合并多个文件?
48|再回首:“输入输出与文件操作”单元小结
49|函数的定义:如何优雅地反复引用同一段代码?
50|函数的参数:怎样实现函数与外部数据通信?
51|函数的参数:当函数操作对象不固定时怎么处理?
52|函数的返回值:如何得到函数的执行结果?
53|小试牛刀:如何利用函数实现电商购物车功能?
54|避坑指南:列表作为参数传递出错了怎么办?
55|高阶函数:函数对象与函数调用的用法区别
56|装饰器:函数嵌套的定义与调用的区别
57|再回首:“函数”单元小结
58|编程思想不同会导致怎样的代码差异?
59|类与实例:如何使用面向对象的思想编写程序?
60|类的继承:如何解决代码重用的问题?
61|类的装饰器:如何改变类方法的功能?
62|小试牛刀:如何开发自动咖啡机?
63|避坑指南:类的常见错误
64|init 方法:如何为对象传递参数?
65|再回首:“类”单元小结
66 | 模块的导入:如何使用其他人编写好的代码功能?
67 | 标准库:Python 默认提供的便捷功能有哪些?
68 | 自定义模块:如何编写一个完整功能?
69 | 第三方模块的使用:如何使用其他人编写的代码?
70 | 小试牛刀:如何使用 Python 为函数求导?
71|再回首:“模块与标准库”单元小结
72|初识异常:异常的产生与分类
73|异常捕获:出现异常时,如何利用程序进行处理?
74|自定义异常捕获:如何定义业务异常?
75|避坑指南:编写捕获异常程序时经常出现的问题
76|再回首:“异常处理”单元小结
77|扩展数据类型:怎样使用更复杂的数据类型?
78|魔术方法:怎样通过类构造自己需要的数据类型?
79|怎样将 Python 和 C++ 结合起来混合编程?
80|怎样将已有算法改造成符合项目的特定算法?
81|设计模式:怎样合理组合多个函数和类?
82|Redis 数据库:怎样使用 NoSQL 数据库?
83|关系型数据库:怎样使用关系型数据库?
84|计算资源充足时,如何通过并行设计提高效率?
85|多进程间如何通信?
86|再回首:“高级数据类型与算法”单元小结
87|理论盘点:数据分析的流程及对应的 Python 库
88|理论盘点:数据采集的方法与 HTTP 协议
89|理论盘点:任务的并行执行原理
90|理论盘点:非规范化数据处理的基础与正则表达式
91|如何获取网页上的数据并存储到文件?
92|小试牛刀:如何将数据进行图形化展示?
93|再回首:“数据分析”单元小结
94|理论盘点:文件类型与对应的 Python 函数库
95|如何批量读取 Excel 文件?
96|如何实现数据的批量格式转换?
97|如何扩展数据类型?
98|再回首:“办公自动化”单元小结
99|理论盘点:Web 客户端与服务端
100|理论盘点:MVC 模型是什么?
101|如何使用Django搭建简单的Web服务器?
102|如何使用Django-admin实现文章上传?
103|如何使用Django实现文章发布?
104|再回首:“Web开发”单元小结
105|理论盘点:人脸识别的一般步骤
106|理论盘点:人脸识别常用的 Python 库有哪些?
107|怎样通过 OpenCV 采集视频信号?
108|如何训练人脸模型?
109|怎样设计人脸识别系统?
110|再回首:“计算机视觉”单元小结
111|聚焦异同:物联网与互联网有啥不一样?
112|理论盘点:基础但不简单的 TCP 协议
113|理论盘点:物模型与模组
114|如何为 ESP32 安装 MicroPython?
115|怎样通过 MQTT 协议构建消息队列?
116|小试牛刀:在 OLED 屏幕和手机远程同时显示室内温度
117|再回首:“物联网”单元小结
118|结束语:人生苦短,我用Pyhon
结课测试|来赴一场满分之约吧!
直播加餐|与AI共同编程,用ChatGPT学Python
直播加餐|用OpenAI API理解Python数据类型
直播加餐|掌握Gradio框架:为 AI Agent 程序定制界面
本节摘要

课后习题
请找到“飞机大战”的课程代码,将输出飞机位置的代码块改为以函数方式实现。

课程代码、课件及其他相关资料地址
https://gitee.com/wilsonyin/zero-basics-python

登录 后留言

全部留言(7)

  • 最新
  • 精选
Matthew
from pynput.keyboard import Key, Listener, KeyCode # 函数:显示位置 def show_location(loc): for a in loc: print(a) background = [[0, 0, 0], [0, "x", 0], [0, 0, 0]] # 调用 显示位置 函数 show_location(background) # 函数:响应按键 def on_press(key): if key == KeyCode.from_char('w'): for i in 0,1,2: for j in 0,1,2: if background[i][j] == "x" and i >0 : background[i][j] = "0" background[i-1][j] = "x" elif key == KeyCode.from_char('s'): for i in 2,1,0: for j in 0,1,2: if background[i][j] == "x" and i < 2 : background[i][j] = "0" background[i+1][j] = "x" elif key == KeyCode.from_char('a'): for i in 0,1,2: for j in 0,1,2: if background[i][j] == "x" and j > 0 : background[i][j] = "0" background[i][j-1] = "x" break elif key == KeyCode.from_char('d'): for i in 0,1,2: for j in 0,1,2: if background[i][j] == "x" and j < 2 : background[i][j] = "0" background[i][j+1] = "x" break print() # 调用 显示位置 函数 show_location(background) with Listener(on_press=on_press) as listener: listener.join()
2022-12-14
5
yanyu-xin
from pynput.keyboard import Key, Listener, KeyCode # 位置列表,全局变量 background = [['0', '0', '0'], ['0', 'x', '0'], ['0', '0', '0']] # 打印列表,显示位置信息的函数 def show_background(): print(background[0]) print(background[1]) print(background[2]) print() return # 显示初始位置 show_background() # 按键动作函数 def on_press(key): # 按w键,循环找到位置,修改相应位置信息 if key == KeyCode.from_char('w'): for i in 0,1,2: for j in 0,1,2: if background[i][j] == "x" and i >0 : background[i][j] = "0" background[i-1][j] = "x" # 按s键,循环找到位置,修改相应位置信息 elif key == KeyCode.from_char('s'): for i in 2,1,0: for j in 0,1,2: if background[i][j] == "x" and i < 2 : background[i][j] = "0" background[i+1][j] = "x" # 按a键,循环找到位置,修改相应位置信息 elif key == KeyCode.from_char('a'): for i in 0,1,2: for j in 0,1,2: if background[i][j] == "x" and j > 0 : background[i][j] = "0" background[i][j-1] = "x" break # 按d键,循环找到位置,修改相应位置信息 elif key == KeyCode.from_char('d'): for i in 0,1,2: for j in 0,1,2: if background[i][j] == "x" and j < 2 : background[i][j] = "0" background[i][j+1] = "x" break # 增加按q键,退出程序 elif key == KeyCode.from_char('q'): exit(-1) # 按键处理后,显示新位置 show_background() # 调用按键处理函数库 with Listener(on_press=on_press) as listener: listener.join()
2023-01-30
2
yanyu-xin
from pynput.keyboard import Key, Listener, KeyCode # 用x , y 变量作为位置参数 # 打印位置,显示位置信息的函数 def show_background(x, y) : print(x,y) for y1 in range(5) : for x1 in range(5) : if (x1 == x and y1 == y) : print('x',end=' ') else : print('0',end=' ') print() return # 调整x y的限制范围,控制在限制范围内 def limit(x, y) : if x > 4: x = 4 if x < 0: x = 0 if y > 4: y = 4 if y < 0: y = 0 return x, y # 按键动作函数 def on_press(key): global x_loca, y_loca # 按w键,循环找到位置,修改相应位置信息 if key == KeyCode.from_char('w'): y_loca -= 1 # 按s键,循环找到位置,修改相应位置信息 elif key == KeyCode.from_char('s'): y_loca += 1 # 按a键,循环找到位置,修改相应位置信息 elif key == KeyCode.from_char('a'): x_loca -= 1 # 按d键,循环找到位置,修改相应位置信息 elif key == KeyCode.from_char('d'): x_loca += 1 # 增加按q键,退出程序 elif key == KeyCode.from_char('q'): exit(-1) # 调整x y的限制范围,控制在限制范围内 x_loca, y_loca = limit(x_loca, y_loca) # 按新坐标显示新位置 show_background(x_loca, y_loca) # 位置列表,全局变量.x,y表示,0,0 为第一行第一列,范围为5 x 5 x_loca , y_loca = 1 , 1 # 显示初始位置 show_background(x_loca, y_loca) # 调用按键处理函数库 with Listener(on_press=on_press) as listener: listener.join()
2023-01-31
1
Geek_0c747b
def print_background(): print() print(background[0]) print(background[1]) print(background[2])
2023-12-05
不再是入门水平python的小宇
# 定义输出飞机位置的函数 def print_background(): for site in background: print(site) print(f"health:{health}")
2023-09-02
1
acondess
from pynput.keyboard import Key,KeyCode,Listener # 生成地图 background = [ [0, 0, 0], [0,"x", 0], [0, 0, 0] ] ##定义地图显示函数 def show_map(): for i in background: print(i) def on_press(key): if key == KeyCode.from_char('w'): for i in 0,1,2: for j in 0,1,2: if background[i][j]=='x' and i>0: background[i][j] = '0' background[i-1][j] = 'x' break elif key == KeyCode.from_char('s'): #注意此处如果i从0,1,2顺序判断时,x字符在第0行,执行了一次移动,此时x在第1行, #再判断时,又会从第1行移动到第2行 for i in 2,1,0: for j in 0,1,2: if background[i][j]=='x' and i<2: background[i][j] = '0' background[i+1][j] = 'x' break elif key == KeyCode.from_char('a'): for i in 0,1,2: for j in 0,1,2: if background[i][j]=='x' and j>0: background[i][j] = '0' background[i][j-1] = 'x' break elif key == KeyCode.from_char('d'): for i in 0,1,2: for j in 0,1,2: if background[i][j]=='x' and j<2: background[i][j] = '0' background[i][j+1] = 'x' break print() #调用地图显示 show_map() # for i in background: # print(i) # 调用地图显示 show_map() with Listener(on_press = on_press) as listener: listener.join()
2023-08-31
朱雯
from pynput.keyboard import Key,Listener,KeyCode import random background = [[0,0,0],[0,"x",0],[0,0,0]] # for i in background: # print(i) health = 100 print(health) def on_press(key): global health if key == KeyCode.from_char("w"): movehead(background) if key == KeyCode.from_char("s"): moveback(background) if key == KeyCode.from_char("a"): moveleft(background) if key == KeyCode.from_char("d"): moveright(background) if key == KeyCode.from_char("="): health = addhealth(health) if key == KeyCode.from_char("-"): health = subhealth(health) print(health) def moveleft(background): for i in range(0,3): for j in range(0,3): if background[i][j] == 'x' and j > 0: background[i][j] = 0 background[i][j-1] = 'x' def moveright(background): for i in range(0,3): for j in 2,1,0: if background[i][j] == 'x' and j < 2: background[i][j] = 0 background[i][j+1] = 'x' print(i,j) def movehead(background): for i in range(0,3): for j in range(0,3): if background[i][j] == 'x' and i > 0: background[i][j] = 0 background[i-1][j] = 'x' break def moveback(background): for i in 2,1,0: for j in range(0,3): if background[i][j] == 'x' and i < 2: background[i][j] = 0 background[i+1][j] = 'x' def addhealth(health): if health < 100: health += random.randint(0,100) if health > 100: health = 100 return health def subhealth(health): if health > 0: health -= random.randint(0,100) if health <= 0: health = 0 exit(-1) return health with Listener(on_press=on_press) as listner: listner.join()
2023-01-30
收起评论