Python
Posted chargeworld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python相关的知识,希望对你有一定的参考价值。
sub(pattern, repl, string, count)
第一个参数:规则
第二个参数:替换后的字符串
第三个参数:字符串
第四个参数:替换个数。默认为0,表示每个匹配项都替换
re.sub("^\s*|\s*$","",字符串)两端
re.sub("^\s*","",字符串)首
re.sub("\s*$","",字符串)尾
# 遍历文件夹下面的所有文件及文件夹,如果是文件,则...如果是文件夹,则...
for i in os.listdir(path):
if os.path.isfile(os.path.join(path,i)):
print(os.path.join(path,i),"文件")
elif os.path.isdir(os.path.join( path,i)):
print(os.path.join(path,i),"文件夹")
# os.path.exists()方法可以直接判断文件/文件夹是否存在
# os.path.isfile("test-data") 判断 test-data 是否文件
# os.path.isdir("hello") 判断 hello是否文件夹
# join:字符串拼接
# os.path.join() 路径拼接
.strip()去除两边空白字符
.lstrip()左边字符
.rstrip()右边
以上是关于Python的主要内容,如果未能解决你的问题,请参考以下文章