❶ 如何用python写一个给三个数排序的程序
用python写一个给三个数排序的程序,使用5行代码如下:#-*-coding:utf-8;a=[2,1,3];print("排序前",a);a.sort()print("排序后",a);