xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
set_copy.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
s
= {
1
,
2
,
3
,
4
}
2
t
=
s
.
copy
()
3
s
.
add
(
5
)
4
t
.
add
(
7
)
5
for
i
in
s
,
t
:
6
print
(
sorted
(
i
))
7