首页 > 编程语言 > 详细

python语言基础 | Chapter 1

时间:2021-05-05 21:22:03      阅读:22      评论:0      收藏:0      [点我收藏+]

Chapter 1.1 字符串

 

Chapter 1.2 list 和 tuple

list是一种特殊的数组,自带插入(append,insert),删除功能(pop),不同种类的元素可以存入一个 list 中。

定义方式:

namelist=[1,2,3,sdsd,刘浩存]

因为python3里的字符采用Unicode编码,所以支持中文

classmates=[sisi,cc,haha]
print(classmates[1])
classmates.append(mond)#add an element to the end
print(classmates[3])
classmates.insert(1,girra)#add an element with a specific index
print(classmates[1])
classmates.pop(1)#pop out the element with a specific index
print(classmates[1])
classmates.pop()#pop out the last element in the list
for i in classmates:#remember to use a colon
    print(i,end= )

tuple的中译名是元组,是只读的,定义了的值就不可以再更改,append之类的函数都不可以用。

另外,由于tuple用小括号定义,在定义只有一个元素的tuple时,要在唯一一个元素后面打逗号,避免歧义。

python语言基础 | Chapter 1

原文:https://www.cnblogs.com/nepblog/p/14732507.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!