mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
24 lines
229 B
Python
24 lines
229 B
Python
xs1 = [
|
|
x
|
|
for x in range(10)
|
|
if True
|
|
]
|
|
|
|
xs2 = {
|
|
x
|
|
for x in range(10)
|
|
if True
|
|
}
|
|
|
|
xs3 = {
|
|
x: None
|
|
for x in range(10)
|
|
if True
|
|
}
|
|
|
|
xs4 = (
|
|
x
|
|
for x in range(10)
|
|
if True
|
|
)
|