Files
pythonProject/f.py
Victor Alexandrovich Tsyrenschikov 3a016aaca3 Project
2026-02-17 18:59:26 +05:00

7 lines
101 B
Python

list1=[1,4,7,9,2,13,6,1,10]
def func1(x):
return x%2
list1=sorted(list1,key=func1)
print(list1)