Discuss / Python / 练习

练习

Topic source

枫澜-ye

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

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


  • 1

Reply