题解 | #进制转换#
进制转换
https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6
def hexadecimal_to_decimal(hexadecimal): # 十六进制转十进制 return int(hexadecimal, 16) a = input() b = hexadecimal_to_decimal(a) print(str(b))
进制转换
https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6
def hexadecimal_to_decimal(hexadecimal): # 十六进制转十进制 return int(hexadecimal, 16) a = input() b = hexadecimal_to_decimal(a) print(str(b))
相关推荐