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))

  • 相关阅读:
    java实现同步的两种方式
    JAVA线程概念
    XML基础总结
    JAVA使用和操作properties文件
    JAVA序列化基础知识
    easyui 在编辑状态下,动态修改其他列值。
    Activiti初学问题,求解
    java web--DOM
    java web(1)
    Java WEB
  • 原文地址:https://www.cnblogs.com/yymn/p/5575383.html
Copyright © 2011-2022 走看看