Python|三个数从小到大输出

a,b,c=[int(x)for x in input('输入三个整数:').split()]
if a>b:
    t=a
    a=b
    b=t
    # 如果a>b,a和b换位置,a是小的数
    if a>c:
        t=a
        a=c
        c=t
        # 如果a>c,a和c换位置,a是最小的数,此时最小的数已经出来了
        if b>c:
            t=b
            b=c
            c=t
    print(a,b,c)

    原文作者:echo_千
    原文地址: https://blog.csdn.net/weixin_46499784/article/details/120664513
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞