micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
d = dict.fromkeys([1, 2, 3, 4])
|
||||
l = list(d.keys())
|
||||
l.sort()
|
||||
print(l)
|
||||
|
||||
d = dict.fromkeys([1, 2, 3, 4], 42)
|
||||
l = list(d.values())
|
||||
l.sort()
|
||||
print(l)
|
Reference in New Issue
Block a user