当前位置: 首页>>代码示例>>Python>>正文


Python strop.lowercase方法代码示例

本文整理汇总了Python中strop.lowercase方法的典型用法代码示例。如果您正苦于以下问题:Python strop.lowercase方法的具体用法?Python strop.lowercase怎么用?Python strop.lowercase使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在strop的用法示例。


在下文中一共展示了strop.lowercase方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: lower

# 需要导入模块: import strop [as 别名]
# 或者: from strop import lowercase [as 别名]
def lower(s):
    """lower(s) -> string

    Return a copy of the string s converted to lowercase.

    """
    return s.lower()

# Convert lower case letters to UPPER CASE 
开发者ID:linuxscout,项目名称:mishkal,代码行数:11,代码来源:string24.py

示例2: swapcase

# 需要导入模块: import strop [as 别名]
# 或者: from strop import lowercase [as 别名]
def swapcase(s):
    """swapcase(s) -> string

    Return a copy of the string s with upper case characters
    converted to lowercase and vice versa.

    """
    return s.swapcase()

# Strip leading and trailing tabs and spaces 
开发者ID:linuxscout,项目名称:mishkal,代码行数:12,代码来源:string24.py

示例3: replace

# 需要导入模块: import strop [as 别名]
# 或者: from strop import lowercase [as 别名]
def replace(s, old, new, maxsplit=-1):
    """replace (str, old, new[, maxsplit]) -> string

    Return a copy of string str with all occurrences of substring
    old replaced by new. If the optional argument maxsplit is
    given, only the first maxsplit occurrences are replaced.

    """
    return s.replace(old, new, maxsplit)


# Try importing optional built-in module "strop" -- if it exists,
# it redefines some string operations that are 100-1000 times faster.
# It also defines values for whitespace, lowercase and uppercase
# that match <ctype.h>'s definitions. 
开发者ID:linuxscout,项目名称:mishkal,代码行数:17,代码来源:string24.py

示例4: replace

# 需要导入模块: import strop [as 别名]
# 或者: from strop import lowercase [as 别名]
def replace(s, old, new, maxreplace=-1):
    """replace (str, old, new[, maxreplace]) -> string

    Return a copy of string str with all occurrences of substring
    old replaced by new. If the optional argument maxreplace is
    given, only the first maxreplace occurrences are replaced.

    """
    return s.replace(old, new, maxreplace)


# Try importing optional built-in module "strop" -- if it exists,
# it redefines some string operations that are 100-1000 times faster.
# It also defines values for whitespace, lowercase and uppercase
# that match <ctype.h>'s definitions. 
开发者ID:glmcdona,项目名称:meddle,代码行数:17,代码来源:string.py


注:本文中的strop.lowercase方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。