天天看點

逆序列印字元串

s = input("請輸入一個字元串:")
if len(s) > 31:
    print("您輸入的字元串過長,請重新輸入:")
else:
    l = len(s)
    print("字元串的長度:%d" % l)
    print(s[::-1])