博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 字符串操作函数二
阅读量:6449 次
发布时间:2019-06-23

本文共 1193 字,大约阅读时间需要 3 分钟。

#-*- coding:utf-8 -*-line = "l want watch movie with you ."print(line.center(50))print(line.ljust(50))print(line.rjust(50))#center 字符串居中#ljust 字符串居左#rjust 字符中居右#lstrip 删除字符串左边的空白字符#rstrip 删除字符串右边的空白字符#strip 删除字符串两端的空白字符word = "\n \t  i am a bird . \n \r "print("==lstrip==")print(word.lstrip())print("===rstrip==")print(word.rstrip())print("==strip==")print(word.strip())#空白字符包括空格 /n /t等不可见字符nword = "hello this a new world ."print("==partition==")#partitionprint(nword.partition("a"))#在源字符串中从左向右查找指定字符串,找到指定字符串做切割,分为3部分,指定字符串前,后,其本身,返回值是元组#如果指定字符串不存在于源字符串中,那么结果由源字符串本身,两个空字符串组成#rpartition 从右向左查找指定字符串wline = "hello \n world"print("==splitlines==")print(wline.splitlines())#splitlines 按照行进行分割,返回一个包含各行作为元素 的列表print("==isalpha==")print(wline.isalpha())  #返回false 因为存在空格,转义字符#isalpha 判断字符串中所有字符是否都是字母,字母返回true,其他返回falsenum = "12233"print("==isdigit==")print(num.isdigit())#isdigit 判断字符串中所有字符是否都是数字,是返回true,其他返回falsestr="sadfa213"print("==isalnum==")print(str.isalnum())#isalnum 字符串是否只由数字和字母组成,是返回true,其他返回falsespace="  "print("==isspace==")print(space.isspace())#isspace 判断字符串中是否只有空格,是返回true,其他返回falseprint("==join==")tstr = "_"list1 = ["aa","bb"]print(tstr.join(list1))#每个字符后面都插入指定的字符,构成一个新的字符串

 

转载地址:http://gflwo.baihongyu.com/

你可能感兴趣的文章
test
查看>>
前端学习网站推荐
查看>>
Windows Phone 获取网络类型(GSM/CDMA/WIFI/Ethernet)
查看>>
006、容器 What、Why、How(2018-12-21 周五)
查看>>
LeetCode算法题-Linked List Cycle(Java实现)
查看>>
nlp Task1
查看>>
基于reflectasm打造自己的通用bean工具
查看>>
ReactiveCocoa & MVVM 学习总结一
查看>>
MVVM
查看>>
捕捉深市最后三分钟的个股玄机
查看>>
docker jenkins使用(二)
查看>>
简单BootLoader
查看>>
oracle库和表空间
查看>>
linux高编进程------进程分配
查看>>
Docker的基本操作
查看>>
hdu2276 快速矩阵幂
查看>>
vim制表符占位个数修改
查看>>
JSP内置对象值out对象及其它的一些常见方法
查看>>
Android undefined intent constructor错误?
查看>>
typscript 语法1
查看>>