python3练习100题——054

题目:取一个整数a从右端开始的4〜7位。

a=input('please input a num:')
print(a[-7:-3])
原文地址:https://www.cnblogs.com/drifter/p/9237493.html