n2=1000 c1=hex(n1) c2=hex(n2) b1=str(c1) b2=str(c2) print(hex(n1),hex(n2)) #整数类型 print(b1,b2) #字符串类型 print(type (b1) ) #检查类型
6 # -*- coding: utf-8 -*- # 请利用Python内置的hex()函数把一个整数转换成十六进制表示的字符串 n1=255 n2=1000 print(hex(n1)) print(hex(n2))