码迷,mamicode.com
首页 > 其他好文 > 详细

元组索引的命名

时间:2017-09-23 20:21:29      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:直接   collect   named   pytho   class   gen   name   div   port   

#!/usr/bin/env python
#coding: utf-8

#student‘s info

student = (‘Jack‘, 16, ‘Male‘, ‘aaa.com‘)
# The normal way 
# print(student[0])

# this is better
NAME = 0
AGE = 1
GENDER = 2
EMAIL= 3

# this make the code friendly to human
print(student[NAME])

# method 2
NAME, AGE, GENDER, EMAIL = range(0,4)
print(student[NAME])


from collections import namedtuple

Student = namedtuple(‘student‘, [‘name‘, ‘age‘, ‘gender‘, ‘email‘])
s1 = Student (‘Jack‘, 16, ‘Male‘, ‘aaa.com‘)
print(s1.name)

 通常情况下,我们是直接用下标,但命名的下标来便于理解其意义,在命令后就容易理解了

元组索引的命名

标签:直接   collect   named   pytho   class   gen   name   div   port   

原文地址:http://www.cnblogs.com/Andy963/p/6953323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!