• 技术文章 >Python技术 >Python基础教程

    python中title函数的作用

    宋雪维宋雪维2021-02-20 09:21:08原创18531

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    1、title函数

    python中字符串函数,返回’标题化‘的字符串,就是单词的开头为大写,其余为小写

    2、语法

    string.title()

    3、使用实例

    str=' tHe wOrLDwidE Web '
    
    str.title()
    
    str.title().strip()

    输出

    ' The Worldwide Web '
    
    'The Worldwide Web'

    以上就是python中title函数的介绍,大家如果需要将字符串转换为标题格式,可以使用title函数哦~

    专题推荐:python基础title函数
    上一篇:python中any函数如何使用? 下一篇:如何使用python中的remove函数?

    相关文章推荐

    • python中with语句的作用• python中open函数的使用方法• python中open和with open有什么区别?• python中any函数如何使用?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网