#!/usr/bin/python

# -*- coding: utf-8 -*-

L = [    

      ['Apple', 'Google', 'Microsoft'],

      ['Java', 'Python', 'Ruby', 'PHP'],

      ['Adam', 'Bart', 'Lisa'] ]

# 打印Apple:

print(L[0][0])

# 打印Python:

print(L[1][1])

# 打印Lisa:

print(L[2][-1])

相关文章:

  • 2021-12-13
  • 2021-07-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-04
  • 2021-06-04
  • 2022-12-23
  • 2021-12-19
  • 2021-04-30
  • 2021-08-14
  • 2022-12-23
相关资源
相似解决方案