import math
math.floor(3.14)
3
math.floor(-3.9)
-4
import math
math.trunc(3.14)
3
math.trunc(-3.14)
-3
round(3.14)
3
round(3.9)
4
(1)替换字符串
l="youpinketang.com"
l.replace("com","cn")
'youpinketang.cn'
(2)以某一符号分割字符串
l="youpinketang.com,youpinketang.cn,comcocmcomc.cn"
l.split(",")
['youpinketang.com', 'youpinketang.cn', 'comcocmcomc.cn']
(3)判断某一字符串的开头与结尾
url="youpinketang.com"
url.startswith("http:")
False
url.endswith("com")
True
(4)寻找字符串
l="hello world"
l.find("w")
6
(1)追加元素
l=[1,5,6,7,8,4,2]
l.append(0)
l
[1, 5, 6, 7, 8, 4, 2, 0]
(2)拓展列表
l=[1,5,6,7,8,4,2]
l.extend([1,2,3])
l
[1, 5, 6, 7, 8, 4, 2, 1, 2, 3]
(3)排序逆序
l=[1,5,6,7,8,4,2]
l.sort()
l
[1, 2, 4, 5, 6, 7, 8]
l.reverse()
l
[8, 7, 6, 5, 4, 2, 1]
(4)查找与统计
l="youkepintang.com"
l.index("o")
1
l="youkepintang.com"
l.count("o")
2