首页 > 编程语言 >python字符操作大全

python字符操作大全

时间:2023-01-16 22:01:22浏览次数:39  
标签:字符 title python char 字符串 print world heLLo 大全

代码示例

  • 编写脚本test.py
char=" heLLo world "

print(char.title()) #title()使每个单词的首字母大写
print(char.upper()) #upper()将字符串改为全部大写
print(char.lower()) #lower()将字符串改为全部小写

print("\tWa,"+char.title()+"!\n") #利用制表符或换行符添加空白并拼接字符串

print(char.rstrip()) #rstrip()删除字符串末尾空白
print(char.lstrip()) #lstrip()删除字符串开头空白
print(char.strip()) #strip()同时删除字符串两端空白

print("Albert Einstein once said,\
'A person who never make a mistake nerver tried anything new.'")

print(str(20)+char) #str()将非字符串值表示为字符串

print(len(char)) #len()统计字符串长度

print(char.replace("heLLo", "hi")) #替换
print(char.split()) #split()以空格为分隔符将字符串拆成多部分
print(char.count("o")) #count()统计特定字符的出现次数
  • 输出结果
 Hello World
 HELLO WORLD
 hello world
        Wa, Hello World !

 heLLo world
heLLo world
heLLo world
Albert Einstein once said,'A person who never make a mistake nerver tried anything new.'
20 heLLo world
13
 hi world
['heLLo', 'world']
2

 

标签:字符,title,python,char,字符串,print,world,heLLo,大全
From: https://www.cnblogs.com/chaimy/p/17056404.html

相关文章

  • Python中互换变量不创建临时变量的方法
    在Python中,当我们想要互换两个变量的值或将列表中的两个值交换时,我们可以使用如下的格式进行,不需要创建临时变量:x,y=y,x这么做的原理是什么呢?首先一般情况下Python......
  • Python环境的安装
    1.下载Python访问Python官网:​​https://www.python.org/​​点击downloads按钮,在下拉框中选择系统类型(windows/MacOS/Linux等)选择下载最新版本的Python没有版本要求......
  • python matplot非阻塞show
    importmatplotlib.pyplotaspltplt.ion()#非阻塞模式path="/****/color_0004_%04d.png"plt.ion()foriinrange(5):path1=path%iplt.axis("off")......
  • PHP简单的字符串加密与加密代码
    PHP简单的字符串加密与加密代码代码//加密算法functionencode($string='',$skey='cxphp'){$strArr=str_split(base64_encode($string));$strCount=cou......
  • 【ES6】字符串的拓展
    【ES6】字符串的拓展​​一、为什么ES6要进行字符拓展?​​​​二、ASCLL码、Unicode编码、UTF-8编码的异同​​​​三、ES6新增的字符串接口​​​​1)codePointAt()​​​​......
  • python写日志
    importloggingfromloguruimportloggerlogging.basicConfig(filename='test_yan.log',#指定文件存放位置level=logging.DEBUG,#设置写入文......
  • #Python 利用pivot_table,数据透视表进行数据分析
     前面我们分享了,利用python进行数据合并和连接,但是工作中,我们往往需要对数据进一步的聚合或者运算,以求最后的数据结果。今天我们就来学习一下利用pandas模块,对数据集进......
  • Python协程与异步编程
    同步synchronous,异步asynchronous,并发concurrent,并行parall同步是一种依赖关系。并行是假同时,并发是真同时进程process,线程thread,协程进程是资源分配的单位,线程是协......
  • python高级语言特性
    装饰器nothingbuta语法糖语法糖(Syntacticsugar):也译为糖衣语法,是由英国计算机科学家彼得·约翰·兰达(PeterJ.Landin)发明的一个术语,指计算机语言中添加的某种语法,这......
  • python—测试工具UI实践(1)—需求分析及环境部署
    环境部署:安装python安装pycharm工作任务:需求:研发一个测试工具,构造随机测试数据技术要求:基于python语言开发成果物:正常使用分享交流:分享开发过程中的收获 ......