Python 字符串大小写转换的简单实例

yipeiwu_com6年前Python基础

①所有字母都转换为大写

# -*- coding:utf-8 -*-

if __name__ == "__main__":
    a = 'hello, world!'
    print(a.upper())输出:


HELLO, WORLD!

②所有字母都转换为小写

# -*- coding:utf-8 -*-

if __name__ == "__main__":
    a = 'HELLO, WORLD!'
    print(a.lower())输出:


hello, world!

③首字母转换成大写, 其余转换成小写

# -*- coding:utf-8 -*-

if __name__ == "__main__":
    a = 'HELLO, WORLD!'
    print(a.capitalize())输出:


Hello, world!


④所有单词的首字母转换成大写, 其余转换成小写

# -*- coding:utf-8 -*-

if __name__ == "__main__":
    a = 'HELLO, WORLD!'
    print(a.title())输出:


Hello, World!

⑤判断所有字母都为大写

# -*- coding:utf-8 -*-

if __name__ == "__main__":
    a = 'HELLO, WORLD!'
    print(a.isupper())
   
    b = 'hello, world!'
    print(b.isupper())输出:


True
False


⑥判断所有字母都为小写

# -*- coding:utf-8 -*-

if __name__ == "__main__":
    a = 'HELLO, WORLD!'
    print(a.islower())
   
    b = 'hello, world!'
    print(b.islower())输出:


False
True


⑦判断所有单词的首字母为大写

# -*- coding:utf-8 -*-

if __name__ == "__main__":
    a = 'HELLO, WORLD!'
    print(a.istitle())
   
    b = 'hello, world!'
    print(b.istitle())
   
    c = 'Hello, World!'
    print(c.istitle())输出:


False
False
True

以上这篇Python 字符串大小写转换的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持【听图阁-专注于Python设计】。

相关文章

Pytorch之finetune使用详解

finetune分为全局finetune和局部finetune。首先介绍一下局部finetune步骤: 1.固定参数 for name, child in model.named...

Python探索之自定义实现线程池

为什么需要线程池呢?         设想一下,如果我们使用有任务就开启一个子线程处理,处理完成后,销毁子线程或等...

Python针对给定字符串求解所有子序列是否为回文序列的方法

Python针对给定字符串求解所有子序列是否为回文序列的方法

本文实例讲述了Python针对给定字符串求解所有子序列是否为回文序列的方法。分享给大家供大家参考,具体如下: 问题: 给定一个字符串,得到所有的子序列,判断是否为回文序列 思路: 对字符...

python图书管理系统

本文实例为大家分享了python图书管理系统的具体代码,供大家参考,具体内容如下 实现语言:python 图形框架:DTK+2.0 数据库框架:SQLite 3.0 本程序需要以下部件运...

python通过ffmgep从视频中抽帧的方法

如下所示: ffmpeg中文文档:http://linux.51yip.com/search/ffmpeg ffmpeg -i test_baofeng.wmv -y -f image2...