1.首字母大写。
程序:
str1 = "hello world"
title = str1.title()
print(title)
2.运行效果如图所示。
首字母大写
3.使用title()函数可以使单词的首字母大写。
4.istitle()检测字符串中所有的单词拼写首字母是否为大写,且其他字母为小写。
如图所示。
istitle函数
1.首字母大写。
程序:
str1 = "hello world"
title = str1.title()
print(title)
2.运行效果如图所示。
首字母大写
3.使用title()函数可以使单词的首字母大写。
4.istitle()检测字符串中所有的单词拼写首字母是否为大写,且其他字母为小写。
如图所示。
istitle函数
Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.