鱼C论坛

 找回密码
 立即注册
查看: 1708|回复: 2

为什么我的函数不能调用

[复制链接]
发表于 2020-10-1 13:29:21 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import os

def print_pos(file_path,lines_pos,lines_key_pos,key):
    print('在文件%s中找到关键字【%s】' % (file_path,key))
    if decide == 'yes':
        print('关键字【%s】在%s行第%s位出现'% (key,lines_pos,lines_key_pos))


def char_pos(key,each_lines):
    print('1')
    start = 0
    pos = []
    for i in each_lines:
        start += 1
        if key == i:
            pos.append(start)
    return pos


def read_each_lines(file_name,key):
    print('2')
    lines = 0
    lines_pos_list = []
    file = open(file_name)
    for each_lines in file:
        lines += 1
        if key in each_lines:
            lines_pos_list.append(lines)
            pos = char_pos(key,each_lines)
            print_pos(file_name,lines_pos_list,pos,key)

    return current_path(key)



#获取当前路径中的所有文件夹以及文件
def current_path(key):
    txt_path_list= []  #保存txt文件路径
    print('3')
    for each_path in os.walk('D:\\测试文件'):
        for each_file in each_path[2]:
            if each_file == '.txt':
                temp = os.path.join(each_path[0],each_file)
                txt_path_list.append(temp)
                key_pos = read_each_lines(temp,key)


key  = input('输入关键字')
decide = input('是否显示打印关键的具体位置')

current_path(key)
以上可能还存在其他诸多问题
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-10-1 13:57:27 | 显示全部楼层
if os.path.splitext(each_file)[1] == '.txt':
return current_path(key)???
def char_pos(key,each_lines):也有问题,关键字只有一个字?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-10-1 14:11:51 | 显示全部楼层
kylin121380 发表于 2020-10-1 13:57
return current_path(key)???
def char_pos(key,each_lines):也有问题,关键字只有一个字?

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 13:08

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表