11 lines
215 B
Python
11 lines
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")
|