【说站】python中capitalize的三种转换操作
2025-01-05
12
python中capitalize的三种转换操作
1、将字符串的首字母转换为大写。
#输入 ["python","is","opening"] ls = eval(input()) #ls返回的还是输入的那个列表 for i in range(len(ls)): ls[i] = ls[i].capitalize() #将列表的第i个位置重新赋了个值 print(ls) #输出 ['Python', 'Is', 'Opening']
2、字符串全是大写字母只保留首字母大写。
cn = '没什么是你能做却办不到的事。' en = "THERE'S NOTHING YOU CAN DO THAT CAN'T BE DONE." print(cn) print('原字符串:', en) # 字符串转换为小写后首字母大写 print('转换后:', en.lower().capitalize())
3、对指定位置字符串的首字母大写。
cn = '没什么是你能做却办不到的事。' en = "There's nothing you can do that can't be done." print(cn) print('原字符串:', en) # 对指定位置字符串转换为首字母大写 print(en[0:16] + en[16:].capitalize())
以上就是python中capitalize的三种转换操作,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1天前赞一波!
相关文章
- 【说站】python中lstrip()截掉字符
- 【说站】python partition如何分割字符串
- 【说站】python中popitem如何使用
- 【说站】python中有哪些大小写转换方法
- 【说站】python copy()和直接赋值的区别
- 【说站】splitlines在python中返回列表
- 【说站】python in操作符是什么
- 【说站】python get获取指定键值
- 【说站】python中isprintable判断字符的使用
- 【说站】python isidentifier()方法是什么
- 【说站】判断水仙花数python代码
- 【说站】python中isnumeric如何使用
- 【说站】python最短路径有哪些算法
- 【说站】python casefold()方法如何使用
- 【说站】凯撒密码python编程简单
- 【说站】python center()如何填充字符串
- 【说站】python isdigit如何判断字符串
- 【说站】python美元转换成人民币转换代码
- 【说站】python输入身高体重算BMI
- 【说站】python命名关键字参数的使用注意
文章评论
评论问答