码迷,mamicode.com
首页 > 编程语言 > 详细

Python3 元组

时间:2019-02-26 17:26:57      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:python3   layout   you   tuple   cat   math   mat   pytho   tags   


layout: post
title: Python3 元组
author: "luowentaoaa"
catalog: true
tags:
mathjax: true


Python 的元组与列表类似,不同之处在于元组的元素不能修改。

元组使用小括号,列表使用方括号。

元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。

>>>tup1 = ('Google', 'Runoob', 1997, 2000);
>>> tup2 = (1, 2, 3, 4, 5 );
>>> tup3 = "a", "b", "c", "d";   #  不需要括号也可以
>>> type(tup3)
<class 'tuple'>

Python3 元组

标签:python3   layout   you   tuple   cat   math   mat   pytho   tags   

原文地址:https://www.cnblogs.com/luowentao/p/10438204.html

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