7-10 字符串排序 (20分)

在这里插入图片描述

代码

s=input().split()
print("After sorted:")
s.sort()
for i in s:
    print(i)
发布了24 篇原创文章 · 获赞 2 · 访问量 204

猜你喜欢

转载自blog.csdn.net/weixin_45115928/article/details/104434983