Discuss / Python / 看看

看看

Topic source

NOVEMBER_C

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

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


  • 1

Reply