mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
9 lines
136 B
Python
9 lines
136 B
Python
|
a = [i for i in range(10)]
|
||
|
assert len(a) == 10
|
||
|
|
||
|
for i in range(10):
|
||
|
q = [x for x in range(i)]
|
||
|
assert len(q) == i
|
||
|
|
||
|
print('PASS')
|