python 创建List二维列表
lists = [[] for i in range(3)] # 创建的是多行三列的二维列表
for i in range(3):
lists[0].append(i)
for i in range(5):
lists[1].append(i)
for i in range(7):
lists[2].append(i)
print("lists is:", lists)
# lists is: [[0, 1, 2], [0, 1, 2, 3, 4
注意:stodo不再被维护/更新。
斯托多
$ stodo
Available commands:
add Create a new task
delete Delete a task if it exists
done Check done mark in a task
help Display general or command-specific help
list Show a list of your ta