码迷,mamicode.com
首页 > 编程语言 > 详细

Python 字符串内置方法学习

时间:2017-11-27 21:29:17      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:sign   pre   rest   cas   sig   字母   style   and   character   

  def capitalize(self): # real signature unknown; restored from __doc__
        """
        S.capitalize() -> str
        
        Return a capitalized version of S, i.e. make the first character
        have upper case and the rest lower case.
        """
        return ""
首字母大写
name = str(‘xiongchaoyuan‘)
print(name.capitalize())
Xiongchaoyuan

Python 字符串内置方法学习

标签:sign   pre   rest   cas   sig   字母   style   and   character   

原文地址:http://www.cnblogs.com/jnkq/p/7905877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!