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

Tuple

时间:2015-10-02 12:30:21      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

Tuple An immutable data value that contains related elements. Tuples are used to group together related data, such as a person‘s name, their age, and their gender.

?

Heterogeneous(异构)?can be composed of elements of different types.

year_born = ("Paris Hilton", 1981)

?

students = [

    ("John", ["CompSci", "Physics"]),

    ("Vusi", ["Maths", "CompSci", "Stats"]),

    ("Jess", ["CompSci", "Accounting", "Economics", "Management"]),

    ("Sarah", ["InfSys", "Accounting", "Economics", "CommLaw"]),

    ("Zuki", ["Sociology", "Economics", "Law", "Stats", "Music"])]

?

Packing & Un-Packing

?

Reference<How to Think Like a Computer Scientist>

Tuple

标签:

原文地址:http://www.cnblogs.com/permanence-practice/p/4852058.html

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