进制转换
1. bin(): 其他进制转二进制
2. int(): 其他进制转十进制; 如果传入的是字符串,需要指定base=进制
3. oct():其他进制转八进制;
4. hex(): 其他进制转十六进制
5. 万能转换:format, 只需要指定具体的转换格式(b, x, o)
'{:04b}'.format(15)
'{:x}'.format(15)
'{:04b}'.format(0xf)
6. ord(): 字符获取ascii码; chr(): ascii码转字符串
https://github.com/jiangsiwei2018/BigData.git
实例代码git仓库地址