精度控制

1
2
round(number, ndigits)    #舍入的数字,保留的尾数位数
f"{num:.2f}" #保留两位小数

字符串操作

1
2
3
4
a[i].isdigit()
a[i].isalpha()
str.upper()
str.lower()

交集并集

1
2
转化为set
&|-+

first step

1
2
sys.setrecursionlimit(50000)		#设置递归深度
input = lambda: sys.stdin.readline().strip() #快读

常用库

datetime

bisect

re

math

gcd

1
math.gcd(a,b)  #若有负数先取abs()

四舍五入

1
2
3
round()    					  #奇进偶舍
math.ceil() #向上取整
math.floor() #向下取整