1. 把字母转换成首字母大写
msg = "hello world" print(msg.title()) //首字母大写 print(msg.upper()) //全大写 print(mgs.lower()) //全小写
2. 在字符串中使用变量
first_name = "zhang" last_name = "wen" full_name = f"{first_name} {last_name}" //前面加f, 即format的简写方式 msg = f"Hello, {full_name.title()}" print(msg)
3. 空白制表符与换行符
print("Languages:\tPython\tPhp") //制表符 print("Languages:\nPython\nPhp") //换行符 print("Languages:\n\tPython\n\tPhp") //可以组合使用
4. 删除字符里的多余空白
msg ="Python " print(msg.rstrip()) //删除末尾空白 输出:'Python' msg.lstrip() //删除开头空白 msg.strip() //删除两边空白