文章
10
粉丝
253
获赞
8
访问
34.7k
通过python的int函数直接转换:
while True: try: num = input() num = int(num, 16) print(num) except: break
登录后发布评论