1. print
# 打印多个表达式
print('Age: ', 42)
# 自定义分隔符
print('I', 'wish', 'to', 'register', 'a', 'complaint', sep='_')
# 自定义的结束字符串
print('Hello, ', end='')
print('world')
Age: 42
I_wish_to_register_a_complaint
Hello, world
2. import
# 基本导入
import math
from math import e
from math import sin, cos, tan
from math import *
# 指定别名
from math import sin as si