题解 | #十六进制数字的大小#
十六进制数字的大小
https://www.nowcoder.com/practice/349fec692757406e92e9a5ebd9f97580
a=input() print(int(a,16))#运用int(x,base)函数,当base不赋值时,默认为10
十六进制数字的大小
https://www.nowcoder.com/practice/349fec692757406e92e9a5ebd9f97580
a=input() print(int(a,16))#运用int(x,base)函数,当base不赋值时,默认为10
相关推荐