判断字符串结尾方式

a=input()
b=input()
x=len(a)
y=len(b)
c=-len(a)
d=-len(b)
if x>y:
    if a[d:]==b:
        print(b)
    else:
        print("no")
elif x<y:
    if a==b[c:]:
        print(a)
    else:
        print("no")
elif x==y:
    if a[c:]==b[c:]:
        print("all")
    else:
        print("no")

 

posted @ 2020-06-21 16:20  tf383838  阅读(320)  评论(0编辑  收藏  举报