python 遍历文件内所有名称含result的文件,并计数数量
时间: 2024-10-07 15:06:43 浏览: 28
在Python中,你可以使用`os`模块的`listdir()`函数配合递归来遍历文件夹内的所有文件,并使用正则表达式检查文件名是否包含"result"。以下是如何实现这个功能的一个示例:
```python
import os
def count_files_with_result(directory):
file_count = 0
for root, dirs, files in os.walk(directory): # 使用os.walk遍历目录及其子目录
for file in files:
if "result" in file: # 检查文件名是否包含 "result"
file_count += 1
print(f"File found: {file}, Directory: {root}")
return file_count
# 调用函数并传入要搜索的根目录
directory_to_search = "./your_directory_path" # 替换为你实际的目录路径
count = count_files_with_result(directory_to_search)
print(f"Total number of files with 'result': {count}")
相关问题
编写一个程序读入一个Python源程序文件并统计文件中每个关键字的出现次数。程序提示用户输入Python源程序文件名称。
编写一个简单的Python程序来统计给定Python源文件中每个关键字的出现次数,你可以使用内置的`open()`函数打开文件,然后逐行扫描,利用`count()`方法计算关键字的数量。以下是一个基本的实现:
```python
# 定义一个包含Python关键字的列表
keywords = ['if', 'for', 'while', 'def', 'import', 'class', 'return', 'else', 'try', 'except']
def count_keywords(file_name):
# 打开文件并读取内容
with open(file_name, 'r') as file:
lines = file.readlines()
# 创建一个字典来存储关键字及其计数
keyword_counts = {keyword: 0 for keyword in keywords}
# 遍历每一行,检查是否包含关键字,并更新计数
for line in lines:
for keyword in keywords:
if keyword in line.lower(): # 将所有字符转为小写进行比较,确保大小写无关
keyword_counts[keyword] += 1
return keyword_counts
# 获取用户输入的文件名
file_name = input("请输入Python源程序文件名称: ")
result = count_keywords(file_name)
# 输出结果
print("各关键字在文件中的出现次数:")
for keyword, count in result.items():
print(f"{keyword}: {count}")
python 字典 计数
在Python中,可以使用字典来计数。根据提供的引用内容,有两种方法可以实现字典计数。
方法一:使用for循环
可以使用for循环遍历输入的列表,并使用字典来记录每个元素出现的次数。具体代码如下所示:
```python
ls1 = list(input())
dict = {}
for i in ls1:
if i in dict:
dict[i += 1
else:
dict[i = 1
print(dict)
```
在这个方法中,我们首先创建一个空字典dict。然后,遍历输入的列表ls1,如果元素已经存在于字典中,则将对应的值加1,否则将该元素作为键添加到字典中,并将对应的值设为1。最后,打印出字典。
方法二:使用zip函数和字典封装
另一种方法是使用zip函数和字典封装来实现字典的计数。具体代码如下所示:
```python
a = input()
b = []
c = []
for i in a:
j = a.count(i)
b.append(i)
c.append(j)
print(dict(zip(b, c)))
```
在这个方法中,我们首先定义了两个空列表b和c。然后,使用for循环遍历输入的字符串a,并使用count函数计算每个字符在字符串中出现的次数。将字符添加到列表b中,将对应的次数添加到列表c中。最后,使用zip函数将两个列表合并,并使用dict函数将合并后的列表转换为字典。最终,打印出字典。
这两种方法都可以用来实现python字典的计数。具体使用哪个方法取决于你的需求和喜好。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [python字典计数](https://blog.csdn.net/weixin_39720807/article/details/110334083)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *3* [python-使用字典计数的练习小结](https://blog.csdn.net/huahua_tao/article/details/127876260)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文