Python 练习

1. 题目

字符串排序。

2. 分析

3. 实例

点我看答案
str1 = input('input string:')
str2 = input('input string:')
str3 = input('input string:')
print(str1, str2, str3)

if str1 > str2:
    str1, str2 = str2, str1
if str1 > str3:
    str1, str3 = str3, str1
if str2 > str3:
    str2, str3 = str3, str2

print('after being sorted.')
print(str1, str2, str3)

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""