Discuss / Python / 复习&交作业

复习&交作业

Topic source

林肯Captain

#1 Created at ... [Delete] [Delete and Lock User]

打印Apple:

print(L[0][0])

打印Python:

print(L[1][1])

打印Lisa:

print(L[2][2]) L.append(['microsoft','nubia','sony']) L.insert(1,['water','girl','pants']) print(L) L.pop() print(L) L.pop(0) print(L) print(len(L))


  • 1

Reply