本文整理汇总了Python中strop.uppercase方法的典型用法代码示例。如果您正苦于以下问题:Python strop.uppercase方法的具体用法?Python strop.uppercase怎么用?Python strop.uppercase使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类strop
的用法示例。
在下文中一共展示了strop.uppercase方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: upper
# 需要导入模块: import strop [as 别名]
# 或者: from strop import uppercase [as 别名]
def upper(s):
"""upper(s) -> string
Return a copy of the string s converted to uppercase.
"""
return s.upper()
# Swap lower case letters and UPPER CASE
示例2: replace
# 需要导入模块: import strop [as 别名]
# 或者: from strop import uppercase [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.
示例3: replace
# 需要导入模块: import strop [as 别名]
# 或者: from strop import uppercase [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.
示例4: test_data_attributes
# 需要导入模块: import strop [as 别名]
# 或者: from strop import uppercase [as 别名]
def test_data_attributes(self):
strop.lowercase
strop.uppercase
strop.whitespace