Discuss / Python / 交作业 2015.7.2

交作业 2015.7.2

Topic source

Gussun

#1 Created at ... [Delete] [Delete and Lock User]
# -*- coding: utf-8 -*-
L = [
    ['Apple', 'Google', 'Microsoft'],
    ['Java', 'Python', 'Ruby', 'PHP'],
    ['Adam', 'Bart', 'Lisa']
]

print(L[1][3])  //取出PHP

  • 1

Reply