上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
2018年1月31日
摘要: 十. Python基础(10)--装饰器 1 ● 装饰器 A decorator is a function that take a function as an argument and return a function. We can use a decorator to extend the functionality of an existing function without cha... 阅读全文
posted @ 2018-01-31 17:51 Arroz 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 九. Python基础(9)--命名空间, 作用域 1 ● !a 与 not a 注意, C/C++可以用if !a表示if a == 0, 但是Python中只能用if not a来表示同样的意义.>>> a = [] >>> if a: ... print("Hello") ... >>> if not a: ... print("Hello") ... Hello 2 ● ... 阅读全文
posted @ 2018-01-31 17:49 Arroz 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 八. Python基础(8)--函数 1 ● 函数返回布尔值 注意, 自定义的函数也可以是用来作逻辑判断的, 例如内置的startswith()等函数.def check_len(x): ''' :param x: :return: ''' if len(x) > 5: return True # 如果这里不写else, 并ret... 阅读全文
posted @ 2018-01-31 17:44 Arroz 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 七. Python基础(7)--文件的读写 1 ● 文件读取的知识补充 f = open('file', encoding = 'utf-8') content1 = f.read() content2 = f.readlines() content3 =f.readline() # 注意:现在只有content1有内容, 因为f.read()执行完以后, 文件的指针已经位于文件尾. 2 ●... 阅读全文
posted @ 2018-01-31 17:42 Arroz 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 六. Python基础(6)--语法 1 ● Python3中, Unicode转字节的方法 print(bytes("李泉", encoding = 'utf-8')) print("李泉".encode("utf-8"))b'\xe6\x9d\x8e\xe6\xb3\x89' print(bytes("李泉", encoding = 'gbk')) print("李泉".encode("gb... 阅读全文
posted @ 2018-01-31 17:40 Arroz 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 五. Python基础(5)--语法 1 ● break结束的是它所在的循环体, continue是让它所在的循环体继续循环 # 打印: 1 10 2 10 3 10 4 10 5 10 6 10 7 10 8 10 9 10 for i in range(1, 10): print(i , end = ' ') for i in range(10, 20): ... 阅读全文
posted @ 2018-01-31 17:38 Arroz 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 四. Python基础(4)--语法 1 ● 比较几种实现循环的代码 i = 1 sum = 0 while i void main() { int sum=0; int i; for(i=1;i= 10: break print(a) # 10 9 ● split知识... 阅读全文
posted @ 2018-01-31 17:22 Arroz 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 三. Python基础(3)--语法 1. 字符串格式化的知识补充 tpl = "我是%s,年龄%d,学习进度100%" %('Arroz',18) print(tpl) # 会提示:ValueError: incomplete format# 占位符只有格式化时才有意义 msg = "我是%s,年龄%d,学习进度100%" print(msg) # 结果:我... 阅读全文
posted @ 2018-01-31 17:20 Arroz 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 二. Python基础(2)--语法 1、实现一个简单的登录系统 '''# 形式1 n = 1 while n 3: break 2、Pycharm的基本使用步骤图示 2.1 创建项目、执行 2.2 实现通过鼠标放大、缩小字体 2.3 更换解释器 2.4 设置断点,进行单步执行 ... 阅读全文
posted @ 2018-01-31 17:18 Arroz 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 一. Python基础(1)--语法 1. 应用程序 1.1 什么是计算机(Computer)? 组成 ①运算器 arithmetic unit; ※ Arithmetic unit and control unit are collectively called as CPU. ②控制器 control unit; ③存储器 memory unit; ·内部存储器 (内存) i... 阅读全文
posted @ 2018-01-31 17:10 Arroz 阅读(299) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页