摘要: hex()函数把一个整数转换成十六进制表示的字符串: n1 = 255 n2 = 1000 print(hex(n1),hex(n2)) 0xff 0x3e8 阅读全文
posted @ 2020-06-09 14:54 徐徐上升 阅读(94) 评论(0) 推荐(0)