Python内置函数
- 1.sort(),sorted()
- 2.ord(), chr()
1.sort(),sorted()
sort() 是list的方法,对已经存在的列表进行操作,无返回值
a=[3,2,4,1]
b=["c","a","b"]
print (a.sort(),b.sort())
# 输出 (None, None)
a.sort()
b.sort()
print (a,b)
# 输出 ([1, 2, 3, 4], ['a', 'b', 'c'])
sorted() 可以对所有可迭代的对象进行排序操作,返回一个新的list,不是对原变量进行原地操作。
c="cab"
print (sorted(c))
# 输出 ['a', 'b', 'c']
参考资料:https://www.runoob.com/python/python-func-sorted.html
2.ord(), chr()
ord()用来返回字符对应的ascii码
print(ord("a"))
# 输出:97# 可用于计算字符之间的距离:
print(ord("c")-ord("a"))
# 输出:2
print("a"-"c")
# 输出:TypeError: unsupported operand type(s) for -: 'str' and 'str'
chr()用来表示ascii码对应的字符,其输入是数字,可以是:十进制,十六进制
print(chr(97))
# 输出:a
print(chr(0x61))
# 输出:a
参考资料:https://www.cnblogs.com/sui776265233/p/9103251.html