Discuss / Python / 作业嘻嘻

作业嘻嘻

Topic source

L=[['Apple','Google','Microsoft'], ['Java','Python','Ruby','PHP'], ['Adam','Bart','List']] print('#打印Apple') print(L[0][0]) print('#打印python') print(L[1][1]) print('#打印Lisa') print(L[2][2])


  • 1

Reply