mirror of
https://github.com/thsrite/MoviePilot-Plugins.git
synced 2026-03-27 10:05:57 +00:00
6 lines
81 B
Python
6 lines
81 B
Python
test = [1,2]
|
|
|
|
for i in range(5 - len(test) + 1):
|
|
test.append([])
|
|
|
|
print(test) |