zoukankan      html  css  js  c++  java
  • string.capwords()函数

    string.capwords()函数

    string.capwords()函数,有需要的朋友可以参考下。


    代码 :

    import syssys.path.append("C:/Python27/Lib")from string import *s='AAa dwEf sldfji'print capwords(s)

    输出:

    Aaa Dwef Sldfji

    string模块中的capwords()函数功能:1.将每个单词首字母置为大写2.将每个单词除首字母外的字母均置为小写;3.将词与词之间的多个空格用一个空格代替4.其拥有两个参数,第二个参数用以判断单词之间的分割符,默认为空格。

    函数原型(源代码解读):

    # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".

    def capwords(s, sep=None): """capwords(s [,sep]) -> string Split the argument into words using split, capitalize each word using capitalize, and join the capitalized words using join. If the optional second argument sep is absent or None, runs of whitespace characters are replaced by a single space and leading and trailing whitespace are removed, otherwise sep is used to split and join the words. """ return (sep or ' ').join(x.capitalize() for x in s.split(sep))

  • 相关阅读:
    什么是封装?
    table
    POM文件
    Maven环境的搭建
    什么是maven
    J2EE的三层经典结构
    DOM对象和jQuery对象对比
    jQuery常用选择器分类
    什么是JQuery?它的特点是什么?
    jQuery准备函数语法
  • 原文地址:https://www.cnblogs.com/yymn/p/5575383.html
Copyright © 2011-2022 走看看