Python学习第三天
Posted libint
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习第三天相关的知识,希望对你有一定的参考价值。
expandtabs(): # 为制表符, 为换行。断句20
test="1234567 89"
v=test.expandtabs(20)
print(v,len(v))
isdecimal(): #当前输入的是不是数字
isdigit(): #当前输入的是不是数字
isnumeric(): #判断当前输入的是否是数字
test="②"
v1=test.isdecimal()
v2=test.isdigit()
print(v1,v2)
isidentifier(): #输入的是否是,字母、数字、下划线、标识符、def、class
islower(): #判断是否为小写
isspace(): #判断是否全部为空格
test=" "
v=test.isspace()
print(v)
istitle(): #判断是不是标题
title(): #转换成标题
test="Return True if all cased characters in S are uppercase and there is"
v1=test.istitle()
print(v1)
v2=test.title()
print(v2)
join(): #将字符中的每一个元素按照指定分隔符进行拼接
test="nishifeng"
print(test)
v=" ".join(test)
print(v)
center(): #字符串居中,在字符串中左右排列字符,共N位
ljust(): #在字符串后面
以上是关于Python学习第三天的主要内容,如果未能解决你的问题,请参考以下文章