方法一:print('百位:{},十位:{},个位:{}'.format(*input('请输入一个三位数:')))方法二:i=int(input('请输入一个三位数:'))t=(i//100,i//10%10,i%10)print('百位:{},十位:{},个位:{}'.format(*t))