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设计】。

相关文章

Django之编辑时根据条件跳转回原页面的方法

在要跳转的编辑页面: #首先获取当期的url: curr_url = self.request.GET.urlencode() #创建一个QueryDict对象: params =...

Tensorflow获取张量Tensor的具体维数实例

获取Tensor的维数 >>> import tensorflow as tf >>> tf.__version__ '1.2.0-rc1'...

pytorch中tensor的合并与截取方法

pytorch中tensor的合并与截取方法

合并: torch.cat(inputs=(a, b), dimension=1) e.g. x = torch.cat((x,y), 0) 沿x轴合并 截取: x[:,...

Python DataFrame设置/更改列表字段/元素类型的方法

Python DataFrame设置/更改列表字段/元素类型的方法

Python DataFrame 如何设置列表字段/元素类型? 比如笔者想将列表的两个字段由float64设置为int64,那么就要用到DataFrame的astype属性,举例如图:...

Django项目开发中cookies和session的常用操作分析

本文实例讲述了Django项目开发中cookies和session的常用操作。分享给大家供大家参考,具体如下: COOKIES操作 检查cookies是否存在: request.CO...