标签:lap code fill 开头 转换 pre ide pytho color
1.数字
#例如 age = 18
2.字符串
#字符串 a = ‘aaa‘ b = "bbb"
2.1字符串常用的功能
2.1.1 capitalize 将字符串的第一个字符转换为大写
2.1.2 center(width, fillchar)-居中显示
‘‘‘ center(width, fillchar)-居中显示 返回一个指定的宽度 width 居中的字符串,fillchar 为填充的字符,默认为 空格。 ‘‘‘ print("hello world".center(20)) print("hello world".center(20,"#")) #------------------------------------------------------- hello world ####hello world#####
2.1.3 count(str, beg= 0,end=len(string)) 返回 str 在 string 里面出现的次数,如果 beg 或者 end 指定则返回指定范围内 str 出现的次数
‘‘‘ count(str, beg= 0,end=len(string)) - 子序列个数 返回 str 在 string 里面出现的次数,如果 beg 或者 end 指定则返回指定范围内 str 出现的次数 ‘‘‘ print("hello world".count("l")) print("hello world".count("a")) #--------------------------------------------- 3 0
2.1.4 startswith(substr, beg=0,end=len(string)) 检查字符串是否是以指定子字符串 substr 开头,是则返回 True,否则返回 False。如果beg 和 end 指定值,则在指定范围内检查
‘‘‘ startswith(substr, beg=0,end=len(string)) 检查字符串是否是以指定子字符串 substr 开头,是则返回 True,否则返回 False。如果beg 和 end 指定值,则在指定范围内检查 ‘‘‘ print("hello world".startswith("h")) # True print("hello world".startswith("a")) # False print("hello world".startswith("h",1,5)) # False #------------------------------------------------------------------- True False False
标签:lap code fill 开头 转换 pre ide pytho color
原文地址:https://www.cnblogs.com/chushujin/p/12290405.html