003《Python数据分析、挖掘与可视化(第2版)》/例2-6.py
lst = eval(input('请输入一个包含若干整数的列表:'))
newLst = sorted(lst, key=lambda num: num%2==0)
print(newLst)