a=input("请输入进制类型") b=eval(input("请输入数据")) if a== 'bin': c=bin(b) elif a== 'oct': c=oct(b) elif a== 'hex': c=hex(b) print(c)