micropython/tests/basics/builtin_sorted.py

11 wiersze
215 B
Python

# test builtin sorted
print(sorted(set(range(100))))
print(sorted(set(range(100)), key=lambda x: x + 100*(x % 2)))
# need to use keyword argument
try:
sorted([], None)
except TypeError:
print("TypeError")