码迷,mamicode.com
首页 > 编程语言 > 详细

python中的 upper() 、lower()、capitalize()、title()方法

时间:2019-01-07 22:35:22      阅读:1240      评论:0      收藏:0      [点我收藏+]

标签:lower   tle   int   world   方法   代码   cap   print   ali   


upper()字符串中字母由小写变为大写
lower()字符串中字母由大写变为小写
capitalize()字符串中字母首字母大写其余小写
title()字符串中字母每个单词的首字母大写其余小写

1 a = "hello"
2 b = "WORLD"
3 c = "hello"
4 d = "hello world"
5 a1 = a.upper()
6 b1 = b.lower()
7 c1 = c.capitalize()
8 d1 = d.title()
9 print(a1)
10 print(b1)
11 print(c1)
12 print(d1)
复制代码
输出结果:

HELLO
world
Hello
Hello World

python中的 upper() 、lower()、capitalize()、title()方法

标签:lower   tle   int   world   方法   代码   cap   print   ali   

原文地址:https://www.cnblogs.com/littlefive/p/10235839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!