Discuss / Python / Test1

Test1

Topic source

L = [ ['Apple', 'Google', 'Microsoft'], ['Java', 'Python', 'Ruby', 'PHP'], ['Adam', 'Bart', 'Lisa'] ]

print(L[0][0])
print(L[-3][-3]) print(L[1][1]) print(L[-2][1]) print(L[2][2]) print(L[-1][-1])

在此插入代码
在此插入代码

  • 1

Reply