摘要:
1.第一个:upper()函数,将所有字母都转换成大写; 2.第二个:lower()函数,将所有字母都转换成小写; 3.第三个:capitalize()函数,将首字母都转换成大写,其余小写; 4.第四个:title()函数,将每个单词的首字母都转换成大写,其余小写; 阅读全文
摘要:
strip() 简介: 移除字符串 首尾 指定字符/片段 语法: str.strip('char') 参数: 'char': 指定的字符或者片段 阅读全文
摘要:
Write a function to convert a name into initials. This kata strictlytakes two words with one space in between them.The output should be two capital le 阅读全文
摘要:
title(): Python title() 方法返回"标题化"的字符串,就是说所有单词都是以大写开始 语法: str.title() 返回值: 所有单词都是以大写开始 例: istitle(): 简介: 检测字符串中的 单词 拼写 首字母是否大写 且 其他字母小写 语法: str.istitle 阅读全文