str int list tuple dict 一些实操

Posted zhangchen-sx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了str int list tuple dict 一些实操相关的知识,希望对你有一定的参考价值。

#字符串的 一些实操
a=what
b= are 
c= you 
print(a+b+c)    #字符串拼接
m =a.split(+) #以什么分割 (代码a=w+ha+t 输出[w, ha, t] )
print(m)
s=  8.join(b)  #拼接
print(type(s))       #查看数据类型
print(a.count(a))  #a 的数量
e=a looooooooooog word   
print(a*2)
print(len(e))       #计算长度时候 空格也算 引号内所有位置都算
print(a.replace(h,4)) #字符串替换
print(a.strip(‘‘))        #默认脱最后一个
print(a.center(30,&))   #居中  填充
print(a.islower())        #is系列不接受参数 作为判断返回布尔值 True False
print(a.startswith(s))  #判断 结果布尔值 至少一个参数   判断以什么开头

#  列表的一些实操
lst=[1,2,3,what,ss,[1,2]]
lst[-1]=lst.upper(这里报错) #upper()不接受参数 []索引 切片 {:}复制列表
print(lst)
l1=[1,2,3]
l2=[4,5]
print(l1+l2) #相加 拼接
print(l1*3)  #相乘

# 元组  count计数 index索引  元组类型不能改变,但是里面的列表,字典里的元素可变
tu=(1,2,3,4)

#字典  键值对 数据类型 键不可改 值随意
dic={2:3,4:[2,3]}

 

以上是关于str int list tuple dict 一些实操的主要内容,如果未能解决你的问题,请参考以下文章

7str字符串int整数list列表dict字典set集合tuple元祖功能详解

月末总结

第一个月 总结

str list tuple dict

str. list. dict. tuple.的使用

Python数据类型:序列(字符串str列表list元组tuple字典dict范围range)