Discuss / Python / Day3作业

Day3作业

Topic source

31501894

#1 Created at ... [Delete] [Delete and Lock User]
L = [    ['Apple', 'Google', 'Microsoft'],    ['Java', 'Python', 'Ruby', 'PHP'],    ['Adam', 'Bart', 'Lisa']]
#打印Appleprint(L[0][0])
#打印Pythonprint(L[1][1])
#打印Lisaprint(L[2][2])

  • 1

Reply