找回密码
 会员注册
查看: 28|回复: 0

Python酷库之旅-第三方库Pandas(084)

[复制链接]

2万

主题

0

回帖

7万

积分

超级版主

积分
70589
发表于 2024-9-10 03:19:26 | 显示全部楼层 |阅读模式
目录一、用法精讲351、pandas.Series.str.isdigit方法351-1、语法351-2、参数351-3、功能351-4、返回值351-5、说明351-6、用法351-6-1、数据准备351-6-2、代码示例351-6-3、结果输出352、pandas.Series.str.isspace方法352-1、语法352-2、参数352-3、功能352-4、返回值352-5、说明352-6、用法352-6-1、数据准备352-6-2、代码示例352-6-3、结果输出353、pandas.Series.str.islower方法353-1、语法353-2、参数353-3、功能353-4、返回值353-5、说明353-6、用法353-6-1、数据准备353-6-2、代码示例353-6-3、结果输出354、pandas.Series.str.isupper方法354-1、语法354-2、参数354-3、功能354-4、返回值354-5、说明354-6、用法354-6-1、数据准备354-6-2、代码示例354-6-3、结果输出355、pandas.Series.str.istitle方法355-1、语法355-2、参数355-3、功能355-4、返回值355-5、说明355-6、用法355-6-1、数据准备355-6-2、代码示例355-6-3、结果输出二、推荐阅读1、Python筑基之旅2、Python函数之旅3、Python算法之旅4、Python魔法之旅5、博客个人主页一、用法精讲351、pandas.Series.str.isdigit方法351-1、语法#351、pandas.Series.str.isdigit方法pandas.Series.str.isdigit()Checkwhetherallcharactersineachstringaredigits.ThisisequivalenttorunningthePythonstringmethodstr.isdigit()foreachelementoftheSeries/Index.Ifastringhaszerocharacters,Falseisreturnedforthatcheck.Returns:SeriesorIndexofboolSeriesorIndexofbooleanvalueswiththesamelengthastheoriginalSeries/Index.351-2、参数    无351-3、功能        用于判断每个字符串元素是否只包含数字字符,如果字符串中仅包含数字,返回True;否则返回False。351-4、返回值        返回一个布尔类型的Series,表示每个字符串元素是否只由数字组成。351-5、说明    无351-6、用法351-6-1、数据准备无351-6-2、代码示例#351、pandas.Series.str.isdigit方法importpandasaspd#创建一个示例Seriesdata=pd.Series(['123','456a','789','foo','12.34',''])#使用isdigit()方法result=data.str.isdigit()#打印结果print(result)351-6-3、结果输出#351、pandas.Series.str.isdigit方法#0True#1False#2True#3False#4False#5False#dtype:bool352、pandas.Series.str.isspace方法352-1、语法#352、pandas.Series.str.isspace方法pandas.Series.str.isspace()Checkwhetherallcharactersineachstringarewhitespace.ThisisequivalenttorunningthePythonstringmethodstr.isspace()foreachelementoftheSeries/Index.Ifastringhaszerocharacters,Falseisreturnedforthatcheck.Returns:SeriesorIndexofboolSeriesorIndexofbooleanvalueswiththesamelengthastheoriginalSeries/Index.352-2、参数    无352-3、功能        用于判断每个字符串元素是否完全由空白字符组成(例如空格、制表符等),如果字符串中只有空白字符,返回True;否则返回False。352-4、返回值        返回一个布尔类型的Series,表示每个字符串元素是否仅包含空白字符。352-5、说明    无352-6、用法352-6-1、数据准备无352-6-2、代码示例#352、pandas.Series.str.isspace方法importpandasaspd#创建一个示例Seriesdata=pd.Series(['','\t','Hello','World','','\n'])#使用isspace()方法result=data.str.isspace()#打印结果print(result)352-6-3、结果输出#352、pandas.Series.str.isspace方法#0True#1True#2False#3False#4False#5True#dtype:bool353、pandas.Series.str.islower方法353-1、语法#353、pandas.Series.str.islower方法pandas.Series.str.islower()Checkwhetherallcharactersineachstringarelowercase.ThisisequivalenttorunningthePythonstringmethodstr.islower()foreachelementoftheSeries/Index.Ifastringhaszerocharacters,Falseisreturnedforthatcheck.Returns:SeriesorIndexofboolSeriesorIndexofbooleanvalueswiththesamelengthastheoriginalSeries/Index.353-2、参数    无353-3、功能        用于检查字符串元素是否全部为小写字母的方法,对于每个字符串元素,如果全部字符是小写,返回True;如果包含大写字母或者非字母字符,则返回False。353-4、返回值        返回一个布尔类型的Series,表示每个字符串元素是否完全由小写字母组成。353-5、说明    无353-6、用法353-6-1、数据准备无353-6-2、代码示例#353、pandas.Series.str.islower方法importpandasaspd#创建一个示例Seriesdata=pd.Series(['hello','world','Hello','PYTHON','data123',''])#使用islower()方法result=data.str.islower()#打印结果print(result)353-6-3、结果输出#353、pandas.Series.str.islower方法#0True#1True#2False#3False#4True#5False#dtype:bool354、pandas.Series.str.isupper方法354-1、语法#354、pandas.Series.str.isupper方法pandas.Series.str.isupper()Checkwhetherallcharactersineachstringareuppercase.ThisisequivalenttorunningthePythonstringmethodstr.isupper()foreachelementoftheSeries/Index.Ifastringhaszerocharacters,Falseisreturnedforthatcheck.Returns:SeriesorIndexofboolSeriesorIndexofbooleanvalueswiththesamelengthastheoriginalSeries/Index.354-2、参数    无354-3、功能        用于检查字符串元素是否全部为大写字母的方法,对于每个字符串元素,如果全部字符是大写,返回True;如果包含小写字母或非字母字符,则返回False。354-4、返回值        返回一个布尔类型的Series,表示每个字符串元素是否完全由大写字母组成。354-5、说明    无354-6、用法354-6-1、数据准备无354-6-2、代码示例#354、pandas.Series.str.isupper方法importpandasaspd#创建一个示例Seriesdata=pd.Series(['HELLO','WORLD','Hello','python','DATA123',''])#使用isupper()方法result=data.str.isupper()#打印结果print(result)354-6-3、结果输出#354、pandas.Series.str.isupper方法#0True#1True#2False#3False#4True#5False#dtype:bool355、pandas.Series.str.istitle方法355-1、语法#355、pandas.Series.str.istitle方法pandas.Series.str.istitle()Checkwhetherallcharactersineachstringaretitlecase.ThisisequivalenttorunningthePythonstringmethodstr.istitle()foreachelementoftheSeries/Index.Ifastringhaszerocharacters,Falseisreturnedforthatcheck.Returns:SeriesorIndexofboolSeriesorIndexofbooleanvalueswiththesamelengthastheoriginalSeries/Index.355-2、参数    无355-3、功能        用于检查字符串元素是否符合格式的方法,一个字符串符合格式的条件是它的每个单词的首字母都是大写字母,其余字母则是小写字母。355-4、返回值        返回一个布尔类型的Series,表示每个字符串元素是否符合格式。  355-5、说明    无355-6、用法355-6-1、数据准备无355-6-2、代码示例#355、pandas.Series.str.istitle方法importpandasaspd#创建一个示例Seriesdata=pd.Series(['HelloWorld','ThisIsATitle','notatitle','Anotherexample','Title123',''])#使用istitle()方法result=data.str.istitle()#打印结果print(result)355-6-3、结果输出#355、pandas.Series.str.istitle方法#0True#1True#2False#3False#4True#5False#dtype:bool二、推荐阅读1、Python筑基之旅2、Python函数之旅3、Python算法之旅4、Python魔法之旅5、博客个人主页
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 会员注册

本版积分规则

QQ|手机版|心飞设计-版权所有:微度网络信息技术服务中心 ( 鲁ICP备17032091号-12 )|网站地图

GMT+8, 2025-1-8 11:41 , Processed in 0.577509 second(s), 25 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表