第三章 7-10 字符串排序

s=input().split()
s=sorted(s)
print('After sorted:')
for i in s:
    print(i)
发布了80 篇原创文章 · 获赞 6 · 访问量 7631

猜你喜欢

转载自blog.csdn.net/qq_33749437/article/details/104886783