mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
Merge-request: IJ-MR-153633 Merged-by: Daniil Kalinin <Daniil.Kalinin@jetbrains.com> GitOrigin-RevId: b304977e30eb4b378d858fcc5300846dc5965445
34 lines
246 B
Python
34 lines
246 B
Python
my_set = {
|
|
1,
|
|
2,
|
|
3
|
|
}
|
|
|
|
|
|
my_set1 = {
|
|
1,
|
|
2,
|
|
3 # comment
|
|
}
|
|
|
|
|
|
my_set2 = {1,
|
|
2,
|
|
3}
|
|
|
|
my_set3 = {1, 2, 3}
|
|
|
|
my_set4 = {
|
|
1, 2,
|
|
3, 4
|
|
}
|
|
|
|
my_set5 = {
|
|
1, 2, 3,
|
|
4
|
|
}
|
|
|
|
my_set6 = {
|
|
1,
|
|
2, 3, 4
|
|
} |