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 ...
随机推荐
- centos 6.8 配置 Redis3.2.5
配置Redis3.2.5 与 php-redis 一.配置Redis 1.下载Redis3.2.5安装包 [root@zhangsan /] wget http://download.redis.io ...
- Ubuntu常用软件
//latex公式识别 sudo snap install mathpix-snipping-tool //markdown # or run: # sudo apt-key adv --keyser ...
- Centos 使用yum安装MongoDB 4.0
1.配置MongoDB的yum源 创建yum源文件: #cd /etc/yum.repos.d #vim mongodb-org-4.0.repo 添加以下内容:(我们这里使用阿里云的源) [mngo ...
- HTTP协议与TCP/IP协议
OSI 是7层 TCP/IP 协议是 4层. OIS 包括的层 从底到上依次为 1.物理层 2.数据链路层 3.网络层 4.传输层 5.会话层 6.表示层 7.应用层 TCP/IP ...
- dubbo框架的web端(war)和server端(tar.gz)结合jenkins打包方式
一.web端程序,打包成war包 jenkins配置 1.项目名称,旧文件处理配置 2.参数构建配置 3.源码库配置 4.打包文件pom.xml配置及多环境打包传参,此处传参qa(表示打测试环境包,名 ...
- Python——汇总
一.工具类 (1)pycharm激活.中文破解 (2)pycharm的基本设置 (3)pycharm常用包和插件的安装 二.数据类型 (1)列表.元祖.字典 操作方法 (2)迭代器操作方法 (3)生成 ...
- MySQL学习基础知识2
1.基础语句 查 select(* | 字段名 | 四则运算 | 聚合函数) from 表名称; 加上as取别名 as可省略 如:select name, (math+english)/2 total ...
- day049--jQuery文档操作示例
DOM操作(CRUD增改查删) 创建元素 $('span') // 创建一个span标签 后置插入操作 append(), appendTo() <!DOCTYPE html> < ...
- Codeforces Round #554 (Div. 2) C. Neko does Maths(数学+GCD)
传送门 题意: 给出两个整数a,b: 求解使得LCM(a+k,b+k)最小的k,如果有多个k使得LCM()最小,输出最小的k: 思路: 刚开始推了好半天公式,一顿xjb乱操作: 后来,看了一下题解,看 ...
- Druid.jar包
首先了解一下,什么是Druid. Druid是Java语言中最好的数据库连接池,它能够提供强大的监控和扩展功能. Druid是一个JDBC组件,它包括三部分: 1)DruidDriver 代理Driv ...