01 2017 档案

摘要:1.数字转字符串 str(42) == "42" 2.字符串转数字 int("42") == 42 3.字符转ascii码 ord("a") == 97 4.ascii码转字符 chr(97) = "a" 5.二、八、十六进制转十 int("11",2) == 3 int("77",8) == 63 阅读全文
posted @ 2017-01-02 15:05 黑炭BC 阅读(214) 评论(0) 推荐(0) 编辑