Chongqing University of Posts and Telecommunications Python Homework 1. Enter three characters to sort from small to large (the third homework)

Article Directory


Original title

Insert picture description here


Code

str = list(input().split())
str.sort();print(" ".join(str))

Guess you like

Origin blog.csdn.net/qq_37500516/article/details/115003716