https://www.runoob.com/python3/python3-tutorial.html https://www.w3school.com.cn/python/index.asp
Python 是一门流行的编程语言。它由 Guido van Rossum 创建,于 1991 年发布。
- Python 是为可读性设计的,与英语有一些相似之处,并受到数学的影响。
- Python 使用新行来完成命令,而不像通常使用分号或括号的其他编程语言。
- Python 依赖缩进,使用空格来定义范围;例如循环、函数和类的范围。其他编程语言通常使用花括号来实现此目的。
检查是否安装了Python及对应版本
python --version
python helloworld.py
python
print("Hello world.")
1+1
exit()
- Python 使用缩进来指示代码块
- 至少使用一个空格来表明缩进
- 同一代码块的语句必须使用相同的空格数量
- 如果语句过长可以使用反斜杠
\
换行,[]、{}、() 中的语句不需要使用反斜杠即可换行 - 同一行也可以写多行语句,但要使用分号
;
来分割每个语句,同一行的所有语句继承当前行的缩进级别
total = itemOne + \
itemTwo + \
itemThree
for x in range(5): print(x); print("-");
if 5 > 2:
print("5 is greater than 2.")
Python 没有声明变量的语句,变量会在赋值时被创建
x = 5
y = "Hello world."
使用 #
符号标记注释
未分配给变量的字符串文字将会被忽略,因此可以使用多行字符串实现多行注释
"""
这里面是
多行注释
"""
print("Hello world.")
变量是存放数据的容器,Python会在首次为变量赋值时创建变量
- 变量名必须以字母或下划线字符开头
- 变量名称不能以数字开头
- 变量名只能包含字母数字字符和下划线(A-z、0-9 和 _)
- ==变量名称区分大小写==(age、Age 和 AGE 是三个不同的变量)
x, y, z = "Orange", "Banana", "Cherry"
x = y = z = "Orange"
a, b = b, a
在函数外部创建的变量称为全局变量 全局变量可以被函数内部和外部的每个成员使用 如果在函数内部创建具有相同名称的变量,则该变量将是局部变量,只能在函数内部使用,且被优先使用。
x = "awesome"
def myfunc():
print("Python is " + x)
myfunc()
通常,在函数内部创建变量时,该变量是局部变量,只能在该函数内部使用。 要在函数内部创建全局变量,您可以使用 global 关键字。
def myfunc():
global x
x = "fantastic"
myfunc()
print("Python is " + x)
另外,如果要在函数内部更改全局变量,请使用 global 关键字。
x = "awesome"
def myfunc():
global x
x = "fantastic"
myfunc()
print("Python is " + x)
type() 获取变量的数据类型
x = 10
print(type(x))
x = 200
isinstance(x, int)
类型 | 分类 | 示例 |
---|---|---|
str | 文本类型 | x = "Hello World" x = str("Hello World") |
int | 数值类型 | x = 29 x = int(29) |
float | 数值类型 | x = 29.5 x = float(29.5) |
complex | 数值类型 | x = 1j x = complex(1j) |
list | 序列类型 | x = ["apple", "banana", "cherry"] x = list(("apple", "banana", "cherry")) |
tuple | 序列类型 | x = ("apple", "banana", "cherry") x = tuple(("apple", "banana", "cherry")) |
range | 序列类型 | x = range(6) |
dict | 映射类型 | x = {"name" : "Bill", "age" : 63} x = dict(name="Bill", age=36) |
set | 集合类型 | x = {"apple", "banana", "cherry"} x = set(("apple", "banana", "cherry")) |
frozenset | 集合类型 | x = frozenset({"apple", "banana", "cherry"}) |
bool | 布尔类型 | x = True x = bool(5) |
bytes | 二进制类型 | x = b"Hello" x = bytes(5) |
bytearray | 二进制类型 | x = bytearray(5) |
memoryview | 二进制类型 | x = memoryview(bytes(5)) |
- int: 正负整数,长度不限
- float: 正负小数,E表示科学计数法
- complex: 复数,j表示虚部
import random
print(random.randrange(1, 10))
- 任意选择使用双引号或单引号
- 使用三个引号表示多行字符串
- 本质是字节数组
- 单个字符就是长度为1的字符串
r"Hello\\\World"
的r
会避免\
的转义
a = "Hello, world!"
# H
a[0]
a[-1]
# ello
a[1:5]
# orl
# 负号表示从尾部倒数
a[-5:-2]
# 步长为-1,即倒叙输出文本
a[::-1]
a = "Hello, World!"
print(len(a))
a = " hello, World! "
# 删除字符串左右的特定字符,默认为空格字符
a.strip()
a.strip(" ._#")
a.lstrip()
a.lstrip(" ._#")
a.rstrip()
a.rstrip(" ._#")
# 返回小写的字符串
a.lower()
a.casefold()
# 返回大写的字符串
a.upper()
# 反转大小写
a.swapcase()
# 替换字符串内容,可选替换的次数,默认为全部替换
a.replace("World", "Kitty")
a.replace("World", "Kitty", 1)
# 分割字符串,可以控制分割的次数和开始的方向
a.split(",")
a.split(",", 2)
a.rsplit(",", 2)
# 按换行符分割字符串,控制分割后是否保留换行符,默认不保留
a.splitlines()
a.splitlines(true)
# 按特定字符串分割并返回分隔符及其前后共计三个部分
# ["He", "l", "lo!"]
"Hello!".partition("l")
# ["Hel", "l", "o!"]
"Hello!".rpartition("l")
# 首字母转换为大写
a.capitalize()
# 转换为标题格式,即每个单词的首字母大写
# 检查是否为标题规则,即每个字母都是首字母大写
"Hello, World! You Are Welcome.".istitle()
# 检查所有字母都是大写或小写,允许包含符号数字等
a.islower()
a.isupper()
# 将字符串在固定长度的字符串中对齐,并使用特定字符串填充前后位置
a.center(30)
a.center(30, "$")
a.ljust(30)
a.ljust(30, "$")
a.rjust(30)
a.rjust(30, "$")
# 用0填充字符串左侧
a.zfill(30)
a.rjust(30, "0")
# 子字符串在字符串或其特定区间中出现的次数
a.count("l")
a.count("l", 3, 10)
# 使用特定编码对字符串编码,默认UTF-8
# 使用参数声明如何处理无法编码的字符
a.encode()
a.encode("ascii", "strict")
# 检查字符串或其区间是否以某字符开头或结尾
a.startswith("H")
a.startswith("H", -10, -2)
a.endswith("!")
a.endswith("!", -10, -2)
# 设置字符串的每个\t的空格数量,默认为8
"Hello\tWorld!".expandtabs(2)
# 查找子字符串并返回其位置,r表示从右侧开始查找
# 找不到子字符串时,find()将会返回异常,而index()将会抛出异常
a.find("ll")
a.find("ll", 0, -1)
a.rfind("ll")
a.rfind("ll", 0, -1)
a.index("ll")
a.index("ll", 0, -1)
a.rindex("ll")
a.rindex("ll", 0, -1)
# 检查所有字符都是字母或数字
a.isalnum()
# 检查所有字符都是数字
a.isdecimal() # [0-9]+
a.isdigit() # [0-9]+, ²
a.isnumeric() # [0-9]+, ⅓
# 检查字符串为有效标识符,仅包含字母数字和下划线,且不以数字为开头
a.isidentifier() # [a-zA-Z_]+[_a-z0-9A-Z]
# 检查是否不包含非打印的回车或换行等字符
a.isprintable()
# 检查字符串是否仅由空格组成
" ".isspace()
# 合并字符串集合
"@".join(["A", "B", "C"])
txt = "Hello world."
x = "llo" not in txt
print(x)
a = "Hello"
b = "World"
c = a + " " + b
print(c)
字符串中使用{}
或{\d+}
或{.+}
作为占位符
占位符内的数字或名称调整参数出现的位置
实际传入的参数数量只允许等于或多余占位符的数量
简化写法支持直接写入变量
f"Hello, I am {name}."
quantity = 3
itemno = 567
price = 49.95
"I want {} pieces of item {} for {} dollars.".format(quantity, itemno, price)
"I want to pay {2} dollars for {0} pieces of item {1}.".format(quantity, itemno, price)
"I want to pay {price} dollars for {quantity} pieces of item {itemIndex}".format(price = price, quantity = quantity, itemIndex = itemno)
# 扩展占位符并对齐数据
"{:8}".format("Hello")
"{:<8}".format("Hello")
"{:>8}".format("Hello")
"{:^8}".format("Hello")
# 扩充数字占位符,但将符号放置在占位符左端
"{:=8}".format(100)
"{:=8}".format(-100)
# 默认正负数格式,仅在负数前增加一个减号
"{:}".format(100)
"{:}".format(-100)
"{:-}".format(100)
"{:-}".format(-100)
# 在正数前面加一个空格,以对齐可能的负数前的减号
"{: }".format(100)
"{: }".format(-100)
# 在正数前面加一个加号,以对齐可能的负数前的减号
"{:+}".format(100)
"{:+}".format(-100)
# 百分比格式
"{:%}".format(0.95123)
# 二进制
"{:b}".format(4237463254)
# 十六进制
"{:x}".format(4237463254)
"{:X}".format(4237463254)
# 小数精度格式
"{:.4f}".format(0.95346)
# 千分位
"{:,}".format(237846324692342374)
"{:_}".format(237846324692342374)
- True 或 False
- 常量
bool(None)bool(Flase)- bool(True)
- 字符串:""==False,其余均为True
bool("")- bool("Hello")
- 数字:0==False,其余均为True
bool(0)- bool(100)
- bool(-100)
- 集合: []==False,其余均为True
bool([])bool(())bool({})- bool([1])
- bool((1))
- bool({1})
如果对象带有 def len(self) 方法且返回0或False,强制转换该对象为bool()时将会返回False
符号 | 说明 | 示例 |
---|---|---|
+ | 加 | x + y |
- | 减 | x - y |
* | 乘 | x * y |
/ | 除 | x * y |
% | 取模 | x % y |
** | 幂 | x ** y |
// | 地板除(取整除) | x // y |
符号 | 说明 | 示例 |
---|---|---|
= | x = 5 | x = 5 |
+= | x += 3 | x = x + 3 |
-= | x -= 3 | x = x - 3 |
*= | x *= 3 | x = x * 3 |
/= | x /= 3 | x = x / 3 |
%= | x %= 3 | x = x % 3 |
//= | x //= 3 | x = x // 3 |
**= | x **= 3 | x = x ** 3 |
&= | x &= 3 | x = x & 3 |
|= | x |= 3 | x = x | 3 |
^= | x ^= 3 | x = x ^ 3 |
>>= | x >>= 3 | x = x >> 3 |
<<= | x <<= 3 | x = x << 3 |
符号 | 说明 | 示例 |
---|---|---|
== | 等于 | x == y |
!= | 不等于 | x != y |
> | 大于 | x > y |
< | 小于 | x < y |
>= | 大于或等于 | x >= y |
<= | 小于或等于 | x <= y |
符号 | 说明 | 示例 |
---|---|---|
and | 如果两个语句都为真,则返回 True。 | x > 3 and x < 10 |
or | 如果其中一个语句为真,则返回 True。 | x > 3 or x < 4 |
not | 反转结果,如果结果为 true,则返回 False | not(x > 3 and x < 10) |
符号 | 说明 | 示例 |
---|---|---|
is | 如果两个变量是同一个对象,则返回 true。 | x is y |
is not | 如果两个变量不是同一个对象,则返回 true。 | x is not y |
符号 | 说明 | 示例 |
---|---|---|
in | 如果对象中存在具有指定值的序列,则返回 True。 | x in y |
not in | 如果对象中不存在具有指定值的序列,则返回 True。 | x not in y |
符号 | 说明 | 示例 |
---|---|---|
& | AND | 如果两个位均为 1,则将每个位设为 1。 |
| | OR | 如果两位中的一位为 1,则将每个位设为 1。 |
^ | XOR | 如果两个位中只有一位为 1,则将每个位设为 1。 |
~ | NOT | 反转所有位。 |
<< | Zero fill left shift | 通过从右侧推入零来向左移动,推掉最左边的位。 |
>> | Signed right shift | 通过从左侧推入最左边的位的副本向右移动,推掉最右边的位。 |
- 列表(List)是一种有序和可更改的集合。允许重复的成员。
- 元组(Tuple)是一种有序且不可更改的集合。允许重复的成员。
- 集合(Set)是一个无序和无索引的集合。没有重复的成员。
- 词典(Dictionary)是一个无序,可变和有索引的集合。没有重复的成员。
有序且可修改的集合类型
mylist = ["A", "B", "C"]
print(mylist)
print(mylist[0])
print(mylist[-1])
print(mylist[1:3])
mylist[1] = 'b'
for x in mylist:
print(x)
print("a" in mylist)
print("A" in mylist)
# index() 方法未找到目标元素时将会抛出异常
mylist.index("C")
len(mylist)
mylist = [1,1,2,2,2,3,3,4,5,4]
mylist.count(2)
# 在尾部追加项目
mylist.append("D")
# 在特定位置插入项目
mylist.insert(2, "b")
# 按值删除
mylist.remove("A")
# 返回并删除特定位置的元素,默认为-1,即最后一个元素
mylist.pop()
mylist.pop(-1)
mylist.pop(0)
# 清空集合
mylist.clear()
# 按索引删除
del mylist[0]
# 销毁整个集合,之后不可再访问
del mylist
list1 = [1,2,3]
# 访问引用
list2 = list1
# 深度复制
list2 = list1.copy()
list2 = list(list1)
list1 = [1,2,3]
list2 = ['a','b','c']
list3 = list1 + list2
list1.extend(list2)
list1 = list(list1 + list2)
list1 = (list1 + list2).copy()
list1.reverse()
list1.sort()
元组是有序且不可更改的集合,用圆括号编写。
mytuple = ("A", "B", "C")
print(mytuple)
mytuple[0]
mytuple[-1]
mytuple[1:3]
创建元组后,您将无法更改其值。元组是不可变的,或者也称为恒定的。 但是有一种解决方法。您可以将元组转换为列表,更改列表,然后将列表转换回元组。
mytuple = ("apple", "banana", "cherry")
mylist = list(mytuple)
mylist[1] = "kiwi"
mytuple = tuple(mylist)
for x in mytuple:
print(x)
print("a" in mytuple)
print("A" in mytuple)
len(mytuple)
# 销毁整个集合,之后不可再访问
del mytuple
tuple1 = (1,2,3)
tuple2 = ('a','b','c')
tuple3 = tuple1 + tuple2
mylist = [1,1,2,2,2,3,3,4,5,4]
mylist.count(2)
# index() 方法未找到目标元素时将会抛出异常
mylist.index("C")
集合是无序和无索引的集合,用花括号编写。
for x in myset:
print(x)
print("a" in myset)
print("A" in myset)
# 添加一个项目
myset.add("D")
# 批量添加多个项目
myset.update(["D", "E", "F"])
len(myset)
# remove() 删除不存在的项目将会抛出异常,discard() 不会
myset.discard("A")
myset.remove("A")
# 返回并删除一个元素,set是无序的,因此无法确定被删除的项目
myset.pop()
# 清空集合
myset.clear()
# 销毁整个集合,之后不可再访问
del myset
set1 = {1,2,3}
set2 = {'a','b','c'}
set3 = set1.union(set2)
set1 = {1,2,3}
# 访问引用
set2 = set1
# 深度复制
set2 = set1.copy()
set2 = set(set1)
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.difference(y)
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
x.difference_update(y)
# 存在于所有集合的项目
x = {"apple", "banana", "cherry"}
y1 = {"google", "banana", "apple"}
y2 = {"cherry", "microsoft", "apple"}
z = x.intersection(y1, y2)
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
x.intersection_update(y)
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "facebook"}
z = x.isdisjoint(y)
x = {"a", "b", "c"}
y = {"f", "e", "d", "c", "b", "a"}
z = x.issubset(y)
x = {"f", "e", "d", "c", "b", "a"}
y = {"a", "b", "c"}
z = x.issuperset(y)
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
# 返回的集合排除了两个集合中同时存在的项
z = x.symmetric_difference(y)
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
x.symmetric_difference_update(y)
字典是一个无序、可变和有索引的集合,用花括号编写,拥有键和值。
mydict = {
"brand": "Porsche",
"model": "911",
"year": 1963
}
x = mydict["brand"]
x = mydict.get("brand")
mydict["brand"] = "Leon"
mydict.update({"brand":"Leon"})
# 如果目标Key不存在,则插入默认值
mydict.setdefault("Brand", "Default Name")
popitem() 方法删除最后插入的项目(在 3.7 之前的版本中,删除随机项目)
mydict.pop("Brand")
# 清空集合
mydict.clear()
# 遍历 key
for key in mydict:
print("{} : {}".format(key, mydict[key]))
for key in mydict.keys():
print("{} : {}".format(key, mydict[key]))
# 遍历 value
for value in mydict.values():
print(value)
# 遍历 key-value pair
for key, value in mydict.items():
print("{} : {}".format(key, value))
print("Brand" in mydict)
print("brand" in mydict)
len(mydict)
# 按Key删除
del mydict["Brand"]
# 销毁整个集合,之后不可再访问
del mydict
dict1 = {
"brand": "Porsche",
"model": "911",
"year": 1963
}
# 访问引用
dict2 = dict1
# 深度复制
dict2 = dict1.copy()
dict2 = dict(dict1)
child1 = {
"name" : "Phoebe Adele",
"year" : 2002
}
child2 = {
"name" : "Jennifer Katharine",
"year" : 1996
}
child3 = {
"name" : "Rory John",
"year" : 1999
}
myfamily = {
"child1" : child1,
"child2" : child2,
"child3" : child3
}
# 请注意,关键字不是字符串字面量
# 请注意,使用了等号而不是冒号来赋值
thisdict = dict(brand="Porsche", model="911", year=1963)
print(thisdict)
# 所有的Key
x = ('key1', 'key2', 'key3')
# 所有Key对应的Value的统一默认值
y = 0
thisdict = dict.fromkeys(x, y)
# [表达式 for 变量 in 列表]
names = ['Bob','Tom','alice','Jerry','Wendy','Smith']
new_names = [name.upper()for name in names if len(name)>3]
# 将name作为key,长度作为value,生成Dictionary
newdict = {name:len(name) for name in names}
# 将名字长度乘以2生成set
newset = {len(name) * 2 for name in names}
# [表达式 for 变量 in 列表 if 条件]
multiples = [i for i in range(30) if i % 3 == 0]
- 使用缩进控制结构
- 简单的if语句可以写在一行
- if True: print("True")
- print("True") if True else print("Flase")
- print("True") if True else print("Flase") if False else print("True")
- 使用 pass 关键字避免无内容的 if 语句的语法错误
- 使用 break 关键字退出循环
- 使用 continue 关键词跳过当前迭代,继续循环
- 允许使用 else 关键字在条件不再成立时运行一次代码块
- break 关键中断循环不会触发 else 的语句
- 使用 pass 关键字避免无内容的 if 语句的语法错误
只要条件为真,就可以执行一组语句。
while True:
print("True")
通过使用 for 循环,我们可以为列表、元组、集合中的每个项目等执行一组语句。
range() 函数返回一个数字序列,默认情况下从 0 开始,并递增 1(默认地),并以指定的数字结束。
# 0~9,共计 10 个数字
for x in range(10):
print(x)
# 3~9,共计 7 个数字
for x in range(3, 10):
print(x)
# 0~50,每次递增10,共计 6 个数字
for x in range(0, 55, 10):
print(x)
- 使用
def
定义函数,并通过函数名后加()
调用函数。 - 参数使用
,
隔开- 可以在定义方法时用=为参数提供默认值
- 参数后跟:和类型名称
- 可以使用Union[,] 为一个参数指定可接受的多种类型
- 使用
return
语句返回结果 - 使用->符号声明函数的返回值类型
- 使用 key = value 语法发送关键字参数,顺序不重要
def my_function(name = "[Unknow]"):
return "Hello from {}".format(name)
print(my_function())
print(my_function("World"))
print(my_function(name = "World"))
def publish(
self,
message: Union[bytearray, str, OutboundMessage],
destination: Topic,
additional_message_properties: Dict[str, Union[str, int, float, bool, dict, list, tuple, None, bytearray]] = None)
-> PublishResult:
通过*
允许函数接收一个参数元组,并不关心参数真正的数量
函数定义不能为空,使用 pass 语句来避免定义无内容的函数的错误
函数允许递归调用
def my_function(*kids):
for x in kids:
print(x)
print("The youngest child is " + kids[2])
my_function("Phoebe", "Jennifer", "Rory")
lambda 函数是一种小的匿名函数。 lambda 函数可接受任意数量的参数,但只能有一个表达式。
x = lambda a, b : a + b
print(x(5, 10))
Python 没有内置对数组的支持,但可以使用 Python 列表代替。
Python 是一种面向对象的编程语言。 Python 中的几乎所有东西都是对象,拥有属性和方法。 类(Class)类似对象构造函数,或者是用于创建对象的“蓝图”。 类定义不能为空,使用 pass 语句来避免定义无内容的类的错误。
用于在抽象类声明一个抽象方法,在子类直接定义并实现此方法即可,子类无需任何@指令修饰 含abstractmethod方法的类不能实例化,继承了含abstractmethod方法的子类必须复写所有abstractmethod装饰的方法,未被装饰的可以不重写
@abstractmethod
def Execute(self): pass
方法伪装属性,方法返回值及属性值,被装饰方法不能有参数,必须实例化后调用,类不能调用
类方法,可以通过实例对象和类对象调用,被该函数修饰的方法第一个参数代表类本身常用 cls,被修饰函数内可调用类属性,不能调用实例属性
静态方法,可以通过实例对象和类对象调用,被装饰函数可无参数,被装饰函数内部通过类名.属性引用类属性或类方法,不能引用实例属性
class MyClass:
x = 5
p1 = MyClass()
print(p1.x)
所有类都有一个名为 init() 的构造函数,它始终在启动类时执行。
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
p1 = Person("Bill", 63)
print(p1.name)
print(p1.age)
对象也可以包含方法。对象中的方法是属于该对象的函数。
以两个下划线__
开头的方法为私有方法,不能在类的外部被使用或直接访问。在类内部以self.__privateMethod()
访问。变量同理
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(self):
print("Hello my name is " + self.name)
p1 = Person("Bill", 63)
p1.myfunc()
self 参数是对类的当前实例的引用,用于访问属于该类的变量。 它不必被命名为 self,但必须是类中任意函数的首个参数。
可以使用 del 关键字删除对象的属性。
del p1.age
del p1
继承允许我们定义继承另一个类的所有方法和属性的类。
父类是继承的类,也称为基类。
子类是从另一个类继承的类,也称为派生类。
class ChildClass(SuperClass1, SuperClass2,SuperClass3)
多继承时,重复实现的方法按子类和父类在改行的排序优先选择
# 定义父类
class Person:
def __init__(self, fname, lname):
self.firstname = fname
self.lastname = lname
def printname(self):
print(self.firstname, self.lastname)
# 定义子类
class Student(Person):
# 子类的函数会覆盖对父类函数的继承
# 因此需要通过父类名称或`super()`方法显式调用
def __init__(self, fname, lname, year):
# Person.__init__(self, fname, lname)
super().__init__(self, fname, lname)
self.graduationyear = year
迭代器是一种对象,该对象包含值的可计数数字。 迭代器是可迭代的对象,这意味着您可以遍历所有值。 从技术上讲,在 Python 中,迭代器是实现迭代器协议的对象,它包含方法 iter() 和 next()。
列表、元组、字典和集合都是可迭代的对象。
它们是可迭代的容器,您可以从中获取迭代器(Iterator)。
通过 raise StopIteration
终止迭代器。
for循环就是通过迭代器实现的
mytuple = ("apple", "banana", "cherry")
# iter() 方法获取可迭代对象上的迭代器
myit = iter(mytuple)
# next() 方法在迭代器上进行迭代
print(next(myit))
class MyNumbers:
def __iter__(self):
self.a = 1
return self
def __next__(self):
if self.a <= 20:
x = self.a
self.a += 1
return x
else:
raise StopIteration
myclass = MyNumbers()
myiter = iter(myclass)
for x in myiter:
print(x)
变量仅在创建区域内可用。这称为作用域。
在函数内部创建的变量属于该函数的局部作用域,并且只能在该函数内部使用。
在 Python 代码主体中创建的变量是全局变量,属于全局作用域。 全局变量在任何范围(全局和局部)中可用。
global 关键字使变量成为全局变量。
x = 100
def myfunc():
global x
x = 200
myfunc()
print(x)
模块是包含一组函数的文件,希望在应用程序中引用。
如需创建模块,只需将所需代码保存在文件扩展名为 .py 的文件中。
# 保存至 mymodule.py 文件
def greeting(name):
print("Hello, " + name)
用 import 语句来使用模块。 通过模块名称访问内部的成员。
import mymodule
# from mymodule import *
# from mymodule import class1, class2, class3
mymodule.greeting("Bill")
也可以使用from
关键字以仅从模块导入部分成员
此时不再需要通过模块名称来访问这部分成员。
from mymodule import person
print (person["age"])
可以在导入模块时使用 as 关键字创建别名
import mymodule as mm
Python 中有几个内建模块,可以随时导入。
内置函数dir()
可以列出模块中的所有函数名(或变量名)。
import platform
x = dir(platform)
print(x)
Python 中的日期不是其自身的数据类型。 可以导入名为 datetime 的模块,把日期视作日期对象进行处理。
import datetime
x = datetime.datetime.now()
x = datetime.datetime(2022, 12, 12)
print(x)
# 日 14
datetime.datetime.now().strftime("%d")
# 周 'Wed'
datetime.datetime.now().strftime("%a")
# 周 'Wednesday'
datetime.datetime.now().strftime("%A")
# 月 'Dec'
datetime.datetime.now().strftime("%b")
# 月 'December'
datetime.datetime.now().strftime("%B")
# 月 12
datetime.datetime.now().strftime("%m")
# 年 2022
datetime.datetime.now().strftime("%Y")
# 小时 24小时制
datetime.datetime.now().strftime("%H")
# 小时 12小时制
datetime.datetime.now().strftime("%I")
# AM/PM 'PM'
datetime.datetime.now().strftime("%p")
# 分钟 50
datetime.datetime.now().strftime("%M")
# 秒 45
datetime.datetime.now().strftime("%S")
# 微秒 374676
datetime.datetime.now().strftime("%f")
# UTC 偏移 ''
datetime.datetime.now().strftime("%z")
# 天数 348
datetime.datetime.now().strftime("%j")
# 本地格式的日期和时间 'Wed Dec 14 17:49:21 2022'
datetime.datetime.now().strftime("%c")
# 本地格式的日期 '12/14/22'
datetime.datetime.now().strftime("%x")
# 本地格式的时间 '17:51:00'
datetime.datetime.now().strftime("%X")
# '2022-12-14 17:52:21.014443 Wednesday PM'
datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f %A %p")
datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
JSON 是用于存储和交换数据的语法。
import json
x = {
"name": "Bill",
"age": 63,
"city": "Seatle"
}
y = json.dumps(x)
print(y)
# 配置格式化的缩进
y = json.dumps(x, indent = 4)
print(y)
# 按成员名称排序
y = json.dumps(x, indent = 4, sort_keys = True)
print(y)
import json
x = '{ "name":"Bill", "age":63, "city":"Seatle"}'
y = json.loads(x)
print(y["age"])
RegEx 或正则表达式是形成搜索模式的字符序列。 RegEx 可用于检查字符串是否包含指定的搜索模式。
import re
txt = "3246asdghr2834sdhjf340"
result = re.findall("\d+", txt)
txt = "3246asdghr2834sdhjf340"
result = re.search("[a-z]+", txt)
if result:
print(result.span())
print(result.start())
print(result.end())
print(result.group())
txt = "asd dssdf dsjfhe dfhsdkj ejkfs"
result = re.split("\s", txt)
txt = "jdksfks dhjskfh shdfhls sdfhksdl dsfslkdj"
result = re.sub("\s+", "+", txt)
PIP 是 Python 包或模块的包管理器。 Python 3.4 或更高版本,默认情况下会包含 PIP。
模块是可以包含在项目中的 Python 代码库,包中包含模块所需的所有文件。
// 检查是否安装了 PIP
pip --version
// 安装一个包
pip install camelcase
// 卸载一个包
pip uninstall camelcase
// 列出已安装的包
pip list
# 使用一个包
import camelcase
c = camelcase.CamelCase()
txt = "hello world"
print(c.hump(txt))
- 阿里云 https://mirrors.aliyun.com/pypi/simple/
- **科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
- 豆瓣(douban) http://pypi.douban.com/simple/
- 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
- **科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
pip install PyQt6 -i https://pypi.tuna.tsinghua.edu.cn/simple
命令行
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
修改文件 C:\Users{username}\AppData\Roaming\pip\pip.ini
[global]
timeout = 6000
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
如果没有引发错误,将会触发 else 关键字定义的代码块 如果指定了 finally 块,则无论 try 块是否引发错误,都会执行 finally 块。 这对于关闭对象并清理资源非常有用。
try:
print(x)
except NameError as err:
print("An NameError occurred: {}".format(err))
except:
print("An exception occurred")
else:
print("Everything goes well.")
finally:
print("Finish")
raise Exception("Here raised an exception.")
raise TypeError("Here raised an exception.")
一些对象定义了标准的清理行为,无论系统是否成功的使用了它,一旦不需要它了,那么这个标准的清理行为就会执行。 关键词 with 语句就可以保证诸如文件之类的对象在使用完之后一定会正确的执行他的清理方法。
with open("myfile.txt") as f:
for line in f.readlines():
print(line)
Python 3.6 使用 input() 方法。 Python 2.7 使用 raw_input() 方法。
# Python 3.6
print("Enter your name:")
x = input()
print("Hello ", x)
# Python 2.7
print("Enter your name:")
x = raw_input()
print("Hello ", x)
f = open("demofile.txt")
f = open("demofile.txt", "rt")
模式 | 名称 | 说明 |
---|---|---|
r | 读取 | 默认值。打开文件进行读取,如果文件不存在则报错。 |
a | 追加 | 打开文件以追加内容,如果不存在则创建该文件。 |
w | 写入 | 打开文件进行写入,如果文件不存在则创建该文件。 |
x | 创建 | 创建指定文件,如果文件存在则返回错误。 |
t | 文本 | 默认值。以文本模式打开文件。 |
b | 二进制 | 以二进制模式打开文件。 |
# `r` 用于避免`\`被视作转义字符
f = open(r"D:\test.txt")
f = open("D:\\test.txt")
f = open("demofile.txt", "rt")
# 默认读取文件的全部内容
print(f.read())
f.seek(0)
# 通过参数控制读取的字符数
print(f.read(10))
f.seek(0)
# 读取一行
print(f.readline())
f.seek(0)
# 逐行读取文件所有内容
for x in f:
print(x)
f.close()
# 创建或覆写文件
f = open(r".\demofile.txt", "w")
f.writelines([
"Now the file has first line of content.\n",
"Now the file has second line of content.\n"])
f.close()
# 创建或追加内容到文件
f = open(r".\demofile.txt", "a")
f.write("Now the file has more content!")
f.close()
import os
if os.path.exists("demofile.txt"):
os.remove("demofile.txt")
import os
if os.path.exists("demofile.txt"):
os.remove("demofile.txt")
if not os.path.exists("demoDir"):
os.mkdir("demoDir")
if os.path.exists("demoDir"):
os.rmdir("demoDir")
返回数字的绝对值
x = abs(-3)
如果 iterable 中的所有项目均为 true,则 all() 函数返回 True,否则返回 False。 如果该可迭代对象为空,all() 函数也返回 True。
x = all([True, True, True])
x = all((0, True, False))
x = all({0, 1, 0})
# 注意:在字典上使用时,all() 函数将检查所有键是否为真,而不是值。
x = all({0 : "Apple", 1 : "Orange"})
如果 iterable 中的任何一项为 true,则 any() 函数返回 True,否则返回 False。 如果可迭代对象为空,则 any() 函数将返回 False。
x = any([False, True, False])
x = any((0, 1, False))
x = any({0, 1, 0})
# 注意:在字典上使用时,any() 函数将检查是否有任何键为真,而不是值。
x = any({0 : "Apple", 1 : "Orange"})
ascii() 函数返回任何对象(字符串,元组,列表等)的可读版本。 ascii() 函数会将所有非 ascii 字符替换为转义字符。
x = ascii("My name is Ståle")
bin() 函数返回指定整数的二进制格式的字符串。 结果将始终以前缀 0b 开头。
string = bin(2173623)
bool() 函数返回指定对象的布尔值。 该对象将始终返回 True,除非:
- 对象为空、比如 []、()、{}
- 对象为 False
- 对象为 0
- 对象为 None
bytearray() 函数返回 bytearray 对象。 它可以将对象转换为 bytearray 对象,或者创建指定大小的空字节数组对象。
x = bytearray(5)
bytes() 函数返回字节对象。 它可以将对象转换为字节对象,或创建指定大小的空字节对象。 bytes() 和 bytearray() 之间的区别在于,bytes() 返回一个不能修改的对象,而 bytearray() 返回一个可以修改的对象。
x = bytes(5)
如果指定的对象是可调用的,则 callable() 函数返回 True,否则返回 False。
def x():
a = 7
l = lambda a: print(a)
callable(x)
callable(l)
i = 5
callable(i)
chr() 函数返回代表指定 unicode 的字符。
x = chr(78)
compile() 函数将指定的源作为代码对象返回,并准备执行。
- source: 必需。要编译的资源,可以是字符串、字节或 AST 对象。
- filename: 必需。源所来自的文件的名称。如果源不是来自文件,则可以编写任何内容。
- mode: 必需。合法值:
- eval: 如果源是单个表达式
- exec: 如果源是语句块
- single: 如果源是单个交互式语句
a='''i = 0
while i < 7:
print(i)
if i == 5: break
i+=1
else:
print("Exit")
print("X")
'''
x = compile(a, 'test', 'exec')
exec(x)
x = compile('print(78)', 'test', 'eval')
exec(x)
a='''input=input("Please input something:")
print("Input="+input)
'''
x = compile(a, 'test', 'exec')
exec(x)
a = 'input("Please input something:")'
x = compile(a, 'test', 'single')
exec(x)
complex() 函数通过指定实数和虚数来返回复数。
x = complex(7, 8)
delattr() 函数将从指定对象中删除指定属性。
class Person:
name = "Bill"
age = 63
country = "USA"
delattr(Person, 'age')
p=Person()
# 将会报错因为age不存在
# print(p.age)
dict() 函数创建字典。 字典是无序、可更改和有索引的集合。
x = dict(name = "Bill", age = 63, country = "USA")
dir() 函数返回指定对象的所有属性和方法,不带值。 此函数会返回所有属性和方法,甚至是所有对象默认的内置属性。
class Person:
name = "Bill"
age = 63
country = "USA"
print(dir(Person))
divmod() 函数返回当参数 1 除以参数 2 时包含商和余数的元组。
x = divmod(5, 2)
x, y = divmod(5, 2)
enumerate()函数接受一个集合(例如元组),并将其作为枚举对象返回。 enumerate()函数添加一个计数器作为枚举对象的键。
x = ('apple', 'banana', 'cherry')
y = enumerate(x)
eval() 函数计算指定的表达式,如果该表达式是合法的 Python 语句,它会被执行。
x = 'print(78)'
eval(x)
exec() 函数执行指定的 Python 代码。 exec() 函数接受大量代码块,这与 eval() 函数仅接受单个表达式不同。
x = 'name = "Bill"\nprint(name)'
exec(x)
filter() 函数返回一个迭代器,该迭代器通过一个函数对项目进行过滤以测试该项目是否可被接受。
class Person:
def __init__(self, age, name):
self.name = name
self.age = age
def __str__(self):
return "Persion: Name={0}, Age={1}".format(self.name, self.age)
def match(p):
return p.age>=18
ps = [Person(10, "A"),Person(20, "B"),Person(30, "C"),Person(40, "D")]
ps = filter(match, ps)
for x in ps:
print(x)
float() 把指定值转换为浮点数。
x = float(5)
format() 函数把指定值格式化为指定格式。
x = format(0.5, '%')
frozenset() 函数返回一个不可更改的 Frozenset 对象(类似于 set 对象,仅不可更改)。
mylist = ['apple', 'banana', 'cherry']
x = frozenset(mylist)
getattr() 函数从指定的对象返回指定属性的值。
class Person:
name = "Bill"
age = 63
country = "USA"
x = getattr(Person, 'age')
x = getattr(Person, 'age', 'default value')
globals() 函数将全局符号表作为字典返回。 符号表包含有关当前程序的必要信息。
x = globals()
print(x)
# 获取当前文件名称
print(x["__file__"])
如果指定的对象拥有指定的属性,则 hasattr() 函数将返回 True,否则返回 False。
class Person:
name = "Bill"
age = 63
country = "USA"
x = hasattr(Person, 'age')
返回指定对象的哈希值。
x = hash("Hello")
hex() 函数将指定的数字转换为十六进制值。 返回的字符串始终以前缀 0x 开头。
x = hex(255)
id() 函数返回指定对象的唯一 id。 Python 中的所有对象都有其自己的唯一 id。 id 在创建时已分配给对象,每次赋值都将更新。 id 是对象的内存地址,并且在每次运行程序时都不同。 (除了某些具有恒定唯一 id 的对象,比如 -5 到 256 之间的整数)
x = ('apple', 'banana', 'cherry')
y = id(x)
input() 函数允许用户输入。
x = input()
print(x)
int() 函数把指定值转换为整数。
x = int(3.14)
如果指定的对象拥有指定的类型,则 isinstance() 函数返回 True,否则返回 False。 如果 type 参数是元组,则如果对象是元组中的类型之一,那么此函数将返回 True。
x = isinstance(10, int)
issubclass() 如果指定对象是指定对象的子类,则 issubclass() 函数将返回 True,否则返回 False。
class myAge:
age = 63
class myObj(myAge):
name = "Bill"
age = myAge
x = issubclass(myObj, myAge)
iter() 返回迭代器对象。
x = iter(["apple", "banana", "cherry"])
print(next(x))
print(next(x))
print(next(x))
len() 函数返回对象中项目的数量。 当对象是字符串时,len() 函数返回字符串中的字符数。
mylist = ["apple", "banana", "cherry"]
x = len(mylist)
list() 函数创建列表对象。 列表对象是有序可更改的集合。
x = list(('apple', 'banana', 'cherry'))
locals() 函数将局部符号表作为字典返回。 符号表包含有关当前程序的必要信息。
x = locals()
print(x)
map() 函数为 iterable 中的每个项目执行指定的函数。项目作为参数发送到函数。
def myfunc(n):
return len(n)
x = map(myfunc, ('apple', 'banana', 'cherry'))
max() 函数返回有最大值的项目,或者 iterable 中有最大值的项目。 如果值是字符串,则按字母顺序进行比较。
x = max(5, 10)
memoryview() 函数从指定对象返回内存视图对象。
x = memoryview(b"Hello")
print(x)
# 返回首个字符的 Unicode
print(x[0])
# 返回第二个字符的 Unicode
print(x[1])
min() 函数返回值最小的项目,或 iterable 中值最小的项目。 如果值是字符串,则按字母顺序进行比较。
x = min(5, 10)
next() 函数返回迭代器中的下一项。 可以添加默认的返回值,以在迭代结束时返回。
mylist = iter(["apple", "banana", "cherry"])
x = next(mylist)
print(x)
x = next(mylist)
print(x)
x = next(mylist)
print(x)
object() 函数返回一个空对象。 您不能向这个对象添加新的属性或方法。 这个对象是所有类的基础,它拥有所有类默认的内置属性和方法。
x = object()
oct() 函数把整数转换为八进制字符串。 Python 中的八进制字符串以 0o 为前缀。
x = oct(15)
open() 函数打开一个文件,并将其作为文件对象返回。
ord() 函数返回表示指定字符 unicode 编码的数字。
x = ord("E")
pow() 函数 x 的 y 次幂 (xy) 的值。 如果提供第三个参数,则返回 x 的 y 次幂后,取余 z。
x = pow(5, 3)
print() 函数将指定的消息打印到屏幕或其他标准输出设备上。 该消息可以是字符串,也可以是任何其他对象,该对象在写到屏幕之前会被转换为字符串。 print 默认输出是换行的,如果要实现不换行需要在变量末尾加上 end="":
print("Hello World")
print("Hello, World", end="")
range() 函数返回数字序列,默认从 0 开始,默认以 1 递增,并以指定的数字结束。
x = range(6)
for n in x:
print(n)
返回对象的可读版本。
dict = {'runoob': 'runoob.com', 'google': 'google.com'};
# "{'google': 'google.com', 'runoob': 'runoob.com'}"
repr(dict)
reversed() 函数返回反向的迭代器对象。
alph = ["a", "b", "c", "d"]
ralph = reversed(alph)
for x in ralph:
print(x)
round() 函数返回一个浮点数,该浮点数是指定数字的舍入版本,并带有指定的小数位数。 默认的小数位数为 0,表示该函数将返回最接近的整数。
x = round(3.1415926, 2)
print(x)
set() 函数创建集合对象。 集合列表中的项目是无序的,因此它将以随机顺序出现。
x = set(('apple', 'banana', 'cherry'))
setattr() 函数指定对象的指定属性的值。
class Person:
name = "John"
age = 36
country = "Norway"
setattr(Person, 'age', 40)
slice() 函数返回 slice 对象(切片)。 slice 对象用于指定如何对序列进行裁切。 可以指定在哪里开始裁切以及在哪里结束裁切。 还可以指定步进,例如只切每隔一个项目。
a = ("a", "b", "c", "d", "e", "f", "g", "h")
x = slice(2)
x = slice(2, 8, 3)
print(a[x])
sorted() 函数返回指定的可迭代对象的排序列表。 可以指定升序或降序。字符串按字母顺序排序,数字按数字排序。
a = ("b", "g", "a", "d", "f", "c", "h", "e")
x = sorted(a)
print(x)
str() 函数将指定的值转换为字符串。
x = str(3.14)
sum() 函数返回一个数字,即 iterable 中所有项目的总和。
a = (1, 2, 3, 4, 5)
x = sum(a)
super() 函数用于提供对父类或同胞类的方法和属性的访问。 super() 函数返回代表父类的对象。
class Parent:
def __init__(self, txt):
self.message
def printmessage(self):
print(self.message)
class Child(Parent):
def __init__(self, txt):
super().__init__(txt)
x = Child("Hello, and welcome!")
x.printmessage()
tuple() 函数创建元组对象。 注释:您不能更改或删除元组中的项目。
x = tuple(('apple', 'banana', 'cherry'))
type() 函数返回指定对象的类型。
a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 55
x = type(a)
y = type(b)
z = type(c)
vars() 函数返回对象的 dic 属性。 dict 属性是包含对象的可变属性的字典。
class Person:
name = "Bill"
age = 19
country = "USA"
x = vars(Person)
zip() 函数返回 zip 对象,它是元组的迭代器,其中每个传递的迭代器中的第一项配对在一起,然后每个传递的迭代器中的第二项配对在一起,依此类推。 如果传递的迭代器具有不同的长度,则项目数最少的迭代器将决定新迭代器的长度。
a = ("Bill", "Steve", "Elon")
b = ("Gates", "Jobs", "Musk")
x = zip(a, b)
import() 函数用于动态加载类和函数 。 如果一个模块经常变化就可以使用 import() 来动态载入。
reload() 用于重新载入之前载入的模块。
import importlib
import sys
# 重新装载 sys 模块
importlib.reload(sys)
要求:pip install requests
- delete(url, args)
- get(url, params, args)
- head(url, args)
- patch(url, data, args)
- post(url, data, json, args)
- put(url, data, args)
- request(method, url, args)
import requests
x = requests.get('https://w3school.com.cn/python/demopage.htm')
print(x.text)
import threading
import time
exitFlag = 0
class myThread (threading.Thread):
def __init__(self, threadID, name, delay):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.delay = delay
def run(self):
print ("开始线程:" + self.name)
print_time(self.name, self.delay, 5)
print ("退出线程:" + self.name)
def print_time(threadName, delay, counter):
while counter:
if exitFlag:
threadName.exit()
time.sleep(delay)
print ("%s: %s" % (threadName, time.ctime(time.time())))
counter -= 1
# 创建新线程
thread1 = myThread(1, "Thread-1", 1)
thread2 = myThread(2, "Thread-2", 2)
# 开启新线程
thread1.start()
thread2.start()
thread1.join()
thread2.join()
print ("退出主线程")
import threading
import time
class myThread (threading.Thread):
def __init__(self, threadID, name, delay):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.delay = delay
def run(self):
print ("开启线程: " + self.name)
# 获取锁,用于线程同步
threadLock.acquire()
print_time(self.name, self.delay, 3)
# 释放锁,开启下一个线程
threadLock.release()
def print_time(threadName, delay, counter):
while counter:
time.sleep(delay)
print ("%s: %s" % (threadName, time.ctime(time.time())))
counter -= 1
threadLock = threading.Lock()
threads = []
# 创建新线程
thread1 = myThread(1, "Thread-1", 1)
thread2 = myThread(2, "Thread-2", 2)
# 开启新线程
thread1.start()
thread2.start()
# 添加线程到线程列表
threads.append(thread1)
threads.append(thread2)
# 等待所有线程完成
for t in threads:
t.join()
print ("退出主线程")
from sqlite3 import Error
import threading
import time
import datetime
import random
class Resource:
def __init__(self) -> None:
self.lock = threading.Lock()
def Lock(self, source: str):
self.lock.acquire()
Print(f"Resource Locked by [{source}]...")
def Unlock(self, source: str):
Print(f"Resource Unlocked by [{source}].")
if self.lock.locked():
self.lock.release()
resource = Resource()
def Print(log: str):
print(f"{datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]} : {log}")
def myFunction1():
while True:
try:
Print(f"[Funtion - 1] trying to fetch resource...")
resource.Lock("Funtion - 1")
time.sleep(1)
except Exception as error:
Print(f"[Error] {error}")
finally:
resource.Unlock("Funtion - 1")
time.sleep(1)
def myFunction2():
while True:
Print(f"[Funtion - 2] trying to fetch resource...")
try:
resource.Lock("Funtion - 2")
if random.random() < 0.3:
raise Error(f"error during resource locked.")
time.sleep(0.2)
except Exception as error:
Print(f"[Error] {error}")
finally:
resource.Unlock("Funtion - 2")
thread_1 = threading.Thread(target=myFunction1)
thread_2 = threading.Thread(target=myFunction2)
thread_1.start()
thread_2.start()
TKinter 虽然为内置GUI库,但是上限较低且风评较差,直接采用PyQt PyQt