This website requires JavaScript.
Explore
Help
Sign In
m5
/
Core2forAWS-MicroPython
Watch
0
Star
0
Fork
0
You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced
2026-05-20 10:30:31 -07:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
196773505a5750428c14d328eab3d346ad4b4b92
Core2forAWS-MicroPython
/
tests
/
basics
/
set1.py
T
8 lines
66 B
Python
Raw
Normal View
History
Unescape
Escape
Add basic functionality tests for the Python bit.
2013-12-29 22:34:42 +00:00
# basic sets
s
=
{
1
}
print
(
s
)
s
=
{
3
,
4
,
3
,
1
}
tests: Fix tests with sets to print sorted set.
2014-04-07 00:42:09 +01:00
print
(
sorted
(
s
)
)
Reference in New Issue
Copy Permalink