mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 02:10:52 +02:00
8 lines
182 B
Python
8 lines
182 B
Python
print(sorted({1,2}.symmetric_difference({2,3})))
|
|
print(sorted({1,2}.symmetric_difference([2,3])))
|
|
s = {1,2}
|
|
print(s.symmetric_difference_update({2,3}))
|
|
l = list(s)
|
|
l.sort()
|
|
print(l)
|