This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
8105736982
circuitpython
/
tests
/
basics
/
set1.py
8 lines
66 B
Python
Raw
Normal View
History
Unescape
Escape
Add basic functionality tests for the Python bit.
2013-12-29 17:34:42 -05:00
# basic sets
s
=
{
1
}
print
(
s
)
s
=
{
3
,
4
,
3
,
1
}
tests: Fix tests with sets to print sorted set.
2014-04-06 19:42:09 -04:00
print
(
sorted
(
s
)
)