Python
Python
基本语法
Hello World
1 | #!/usr/bin/env python |
变量
1 | age: int = 18 # 年龄是 int 类型 |
判断
1 | num: int = 200 |
循环
1 | for item in range(6): |
算术
1 | result = 10 + 30 # => 40 |
文件读取
1 | with open("myfile.txt", "r", encoding='utf8') as file: |
函数
1 | def add(x, y): |
异常处理
1 | try: |
数据类型
类型 | 名称 |
---|---|
str | 文本/字符串(Text) |
bool | 布尔值/逻辑值(Boolean) |
int, float, complex | 数值(Numeric) |
dict | 映射/键值对(Mapping) |
list, tuple, range | 序列(Sequence) |
set, frozenset | 集合(Set) |
bytes, bytearray,memoryview | 二进制数据(Binary) |
字符串
1 | hello = "Hello World" |
列表
1 | #定义 |
元组
1 | my_tuple = (1, 2, 3) |
####字典
1 | >>> empty_dict = {} |
类&继承
定义
1 |
|
构造函数
1 | class Animal: |
方法
1 | class Dog: |
类变量
1 | class MyClass: |
super函数
1 | class ParentClass: |
repr方法
1 | class Employee: |
多态
1 | class ParentClass: |
重写
1 | class ParentClass: |
继承
1 | class Animal: |