day05 数据类型的方法详解
今日内容:
1、数字的基本操作
2、字符串的操作及常用方法
3、列表的操作及常用方法
重点:
1、字符串的操作及常用方法
(1)常用操作
"""
字符串的操作:
"""
s = "This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE"
# 1、根据索引取值 ---> s[]
letter = s[5]
print(letter) # i # 2、对字符串进行切片 --> s[start_index:end_index:step]
sp = s[::]
print(sp) # This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE
sp1 = s[:5:]
print(sp1) # This
sp2 = s[10::]
print(sp2) # test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE
sp3 = s[5:10:]
print(sp3) # is a
sp4 = s[5:15:2]
print(sp4) # i et
spre = s[-1:-10:-1]
print(spre) # EdCBa eDc # 3、字符串的遍历
for i in s:
print(i,end=" ") # T h i s i s a t e s t , a n d i n c l u d e l e t t e r 、 n u m b e r s 1 , 2 , 3 a n d u p - l e t t e r A B c D e a B C d E
print() # 4、字符串的长度 ---> len()
s_lenth = len(s)
print(s_lenth) # # 5、成员运算 ---> in \ not in
print("h" in s) # True # # 6、字符串的删除 ---> 直接清空字符串所在的空间,删除的是数据本身,不是绑定关系
# s1 = "haha 这是一个要被删除的字符串"
# del s1
# print(s1) # NameError: name 's1' is not defined
(2)字符串的常用方法
"""
字符串的重要方法
"""
s_zh = "***This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE,并且包括了中文---**" # 1、 去除空白及指定字符 ---> strip() \ lstrip() \ rstrip()
s2 = s_zh.strip()
print(s2) # ***This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE,并且包括了中文---**
print(id(s2),id(s_zh)) # 2407212780880 2407212574624
print(s_zh.strip("*")) # This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE,并且包括了中文---
print(s_zh.lstrip("*")) # This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE,并且包括了中文---**
print(s_zh.rstrip("*")) # ***This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE,并且包括了中文--- # 2、 将字符串切分成列表 ---> split() \ rsplit("str","count"):对字符串进行切分,变为列表,默认以空白进行切分依据!
print(s_zh.split()) # ['***This', 'is', 'a', 'test,and', 'include', 'letter、numbers', '1,2,3', 'and', 'up-letter', 'ABcDe', 'aBCdE,并且包括了中文---**']
print(s_zh.rsplit()) # ['***This', 'is', 'a', 'test,and', 'include', 'letter、numbers', '1,2,3', 'and', 'up-letter', 'ABcDe', 'aBCdE,并且包括了中文---**']
print(s_zh.split(" ")) # ['***This', 'is', 'a', 'test,and', 'include', 'letter、numbers', '1,2,3', 'and', 'up-letter', 'ABcDe', 'aBCdE,并且包括了中文---**']
print(s_zh.split("a",1)) # ['***This is ', ' test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE,并且包括了中文---**']
print(s_zh.rsplit("a",1)) # ['***This is a test,and include letter、numbers 1,2,3 and up-letter ABcDe ', 'BCdE,并且包括了中文---**'] # 3、将特定字符串替换成另一种字符串 ---> replace("old","new",count)
print(s_zh.replace(" ","%")) # ***This%is%a%test,and%include%letter、numbers%1,2,3%and%up-letter%ABcDe%aBCdE,并且包括了中文---**
print(s_zh.replace(" ","%",2)) # ***This%is%a test,and include letter、numbers 1,2,3 and up-letter ABcDe aBCdE,并且包括了中文---** # 4、将列表中每个值添加进字符串中 ---> "str".join(intrable) :以 . 为分界将 interable 中每个元素组合成字符串
ls = ["我","需要","将","这个","列表","添加","进","字符串中"]
print("".join(ls)) # 我需要将这个列表添加进字符串中
print(".".join(ls)) # 我.需要.将.这个.列表.添加.进.字符串中 # 5、统计字符串中特定字符出现的次数 ---> count(str, start_index=None, end_index=None)
print(s_zh.count("i")) # # 6、根据字符取索引 ---> index(str[, start[, end]])
print(s_zh.index("i")) # 5 --> 从左到右第一个 # 7、 以特定字符开头及结尾 ---> startwith(str[, start[, end]]) / endwith(str[, start[, end]])
print(s_zh.startswith("*")) # True
print(s_zh.endswith("-")) # False # 8、判断字符串内部是否是自然数、纯字母、字符串或字母、汉字 ---> isdigit() / isalpha() / isalnum()
# isdigit --> 判断是否为纯数字(自然数,不包括罗马数字、汉字等)
# isalpha --> 判断是否为纯字母或汉字
# isalnum --> 判断是否为字母或汉字或数字(所有类型的数字)
# isnumeric --> 判断是否为数字(所有类型的数字) print("Ⅳ".isnumeric()) # True
print("Ⅳ".isdigit()) # False
print("Ⅳ".isalnum()) # True
print("a1".isalpha()) # False # 9、字符串的大写小写 --> upper \ lower \ captialize \ title \
s_zh1 = "this is a test,and include letter、numbers 1,2,3 and up-letter abcde abcde"
print(s_zh1.upper()) # ***THIS IS A TEST,AND INCLUDE LETTER、NUMBERS 1,2,3 AND UP-LETTER ABCDE ABCDE,并且包括了中文---**
print(s_zh1.lower()) # ***this is a test,and include letter、numbers 1,2,3 and up-letter abcde abcde,并且包括了中文---**
print(s_zh1.capitalize()) # This is a test,and include letter、numbers 1,2,3 and up-letter abcde abcde
print(s_zh1.title()) # This Is A Test,And Include Letter、Numbers 1,2,3 And Up-Letter Abcde Abcde
2、列表操作及其常用方法
(1)常用操作
"""
基本操作
"""
ls = [1,2,3,"a",'b','c',"赵",'钱'] # 1、取值
print(ls[2]) # # 2、切片
print(ls[::-1]) # ['钱', '赵', 'c', 'b', 'a', 3, 2, 1] # 3、拼接
print(ls + ["",2,3]) # [1, 2, 3, 'a', 'b', 'c', '赵', '钱', '1', 2, 3] # 4、长度
print(len(ls)) # # 5、成员运算 in \ not in
# 6、遍历:使用for循环,循环遍历列表
(2)列表的常用方法
"""
常用方法
"""
# 1、增
ls.append("append")
print(ls) # [1, 2, 3, 'a', 'b', 'c', '赵', '钱', 'append'] ls.insert(3,"insert")
print(ls) # [1, 2, 3, 'insert', 'a', 'b', 'c', '赵', '钱', 'append'] ls.extend([100,200,300])
print(ls) # [1, 2, 3, 'insert', 'a', 'b', 'c', '赵', '钱', 'append', 100, 200, 300] # 2、删
ls.remove("append")
print(ls) # [1, 2, 3, 'insert', 'a', 'b', 'c', '赵', '钱', 100, 200, 300] ls.pop(3) # --> 可以删除指定index的值,默认删除最后一个
print(ls) # [1, 2, 3, 'a', 'b', 'c', '赵', '钱', 100, 200, 300] # ls.clear() # 将列表中值进行删除 # 3、改
ls[1] = 22
print(ls) # [1, 22, 3, 'a', 'b', 'c', '赵', '钱', 100, 200, 300] # 4、查
print(ls.index("赵")) #
print(ls.count("a")) # 1 --> 查询指定字符串出现次数 # 5、其它方法
ls.reverse()
print(ls) # [300, 200, 100, '钱', '赵', 'c', 'b', 'a', 3, 22, 1] ls1 = ['a','d','c','f','e','g']
ls1.sort(reverse=True)
print(ls1) # ['g', 'f', 'e', 'd', 'c', 'a'] --> 只能对同种类型的数据进行排序 # ls.copy() --> 浅拷贝,只是复制列表容器本身及内部的内存地址,不会复制列表中元素本身
其它内容:
1、数字的操作
数字类型直接的相互转化
a = 10
b = 3.74
c = True
print(int(a), int(b), int(c)) # 10 3 1
print(float(a), float(b), float(c)) # 10.0 3.74 1.0
print(bool(a), bool(b), bool(c)) # True True True
day05 数据类型的方法详解的更多相关文章
- Python数据类型及其方法详解
Python数据类型及其方法详解 我们在学习编程语言的时候,都会遇到数据类型,这种看着很基础也不显眼的东西,却是很重要,本文介绍了python的数据类型,并就每种数据类型的方法作出了详细的描述,可供知 ...
- python的dict()字典数据类型的方法详解以及案例使用
一.之前的回顾 # int 数字 # str 字符串 # list 列表 # tuple 元组 # dict 字典 字典中最重要的方法 keys() values() items() get upd ...
- python的list()列表数据类型的方法详解
一.列表 列表的特征是中括号括起来的,逗号分隔每个元素,列表中的元素可以是数字或者字符串.列表.布尔值......等等所有类型都能放到列表里面,列表里面可以嵌套列表,可以无限嵌套 字符串的特征是双引号 ...
- C++调用JAVA方法详解
C++调用JAVA方法详解 博客分类: 本文主要参考http://tech.ccidnet.com/art/1081/20050413/237901_1.html 上的文章. C++ ...
- Clone使用方法详解【转载】
博客引用地址:Clone使用方法详解 Clone使用方法详解 java“指针” Java语言的一个优点就是取消了指针的概念,但也导致了许多程序员在编程中常常忽略了对象与引用的区别,本文 ...
- integer与int区别以及integer.values()方法详解
声明:本文为博主转载文章,原文地址见文末. 知识点1:integer和int的区别 /* * int是java提供的8种原始数据类型之一.Java为每个原始类型提供了封装类,Integer是java为 ...
- $.ajax()方法详解 jquery
$.ajax()方法详解 jquery中的ajax方法参数总是记不住,这里记录一下. 1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址. 2.type: 要求为Str ...
- jQuery中 $.ajax()方法详解
$.ajax()方法详解 jquery中的ajax方法参数总是记不住,这里记录一下. 1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址. 2.type: 要求为Strin ...
- [五]基础数据类型之Short详解
Short 基本数据类型short 的包装类 Short 类型的对象包含一个 short 类型的字段 原文地址:[五]基础数据类型之Short详解 属性简介 值为 215-1 ...
随机推荐
- python icmp\dns\http监控网络各个节点状态,并记录日志
配置文件如下:支持多节点: { "dns":[{"domainname":"www.baidu.com","dnsserver&q ...
- 关于取li中的value
HTML的li标签的属性value是有规定的:规定列表项目的数字,所以它的value只能是数字.像字符和第一数字为0的都不取非要用li的话可以 var uid = $('#userid').attr( ...
- url全部信息打印
public String findAllContract(HttpServletRequest request,String a){ String string = new StringBuilde ...
- 转:eclipse 设置Java快捷键补全
1.打开Eclipse,点击" Window - Preferences"; 2. 在目录树上选择"Java——Editor——Content Assist", ...
- C# AddRange为数组添加多个元素的代码
将代码过程中重要的代码片段做个收藏,下面代码段是关于C# AddRange为数组添加多个元素的代码,希望对小伙伴有所用处.ArrayList ab = new ArrayList();ab.Add(& ...
- 存储类&作用域&生命周期&链接属性
链接属性 (1)大家知道程序从源代码到最终可执行程序,经历的过程:编译.链接. (2)编译阶段就是把源代码搞成.o目标文件,目标文件里面有很多符号和代码段.数据段.bss段等分段.符号就是编程中的变量 ...
- Django 对接 支付宝支付, 回调
平台 点击这里进入 蚂蚁金服开放平台 沙箱 点击这里进入 沙箱环境 初始界面 设置公钥 下载创建秘钥工具 1. 进入文档中心 这里 2. 选中 电脑网站支付 3. 进入后选中 API 列表 中的 统 ...
- P4137 Rmq Problem / mex (莫队)
题目 P4137 Rmq Problem / mex 解析 莫队算法维护mex, 往里添加数的时候,若添加的数等于\(mex\),\(mex\)就不能等于这个值了,就从这个数开始枚举找\(mex\): ...
- [File transfer]Syncthing
https://syncthing.net/ 另外两种1.filezila 2.python -m http
- centos7使用kubeadm安装部署kubernetes 1.14
应用背景: 截止目前为止,高热度的kubernetes版本已经发布至1.14,在此记录一下安装部署步骤和过程中的问题排查. 部署k8s一般两种方式:kubeadm(官方称目前已经GA,可以在生产环境使 ...