编写程序,用户输入一个位以上的整数,输出其百位以上的数字。例如用户输入1234.则程序输出12.

时间:2021-09-05 00:11:45
x=input('please input an integer of more than 3 digits:')
try:
    x=int(x)
    x=x//100
    if x==0:
        print('You must input an integer of more than 3 digits.')
    else:
        print(x)
except BaseException:
    print('You must input an integer')