简体   繁体   English

检查文件名是否包含字符串Python

[英]Check if the filename contains a string Python

I am trying to find a way where the name of the file the program is reading will be checked if it contains any of the strings like below. 我试图找到一种方法,如果它包含如下所示的任何字符串,将检查程序正在读取的文件的名称。 I am not sure if that is the right way to go about it. 我不确定这是否是正确的方法。 The string is going to be a global variable as I have to use it later in the program 该字符串将成为一个全局变量,因为我必须稍后在程序中使用它

class Wordnet():

    def __init__(self):
        self.graph = Graph()
        self.filename = ''
        self.word_type = ''

    def process_file(self):
        self.filename = "noun.txt"
        self.file = open(self.filename, "r")
        return self.file, self.filename

    def check_word_type(self, filename):
        if 'noun' in filename:
            self.word_type = 'noun'
        elif 'verb' in filename:
            self.word_type = 'verb'
        elif 'vrb' in filename:
            self.word_type = 'verb'
        elif adj in filename:
            self.word_type = 'adj'
        elif adv in filename:
            self.word_type = 'adv'
        else:
            self.word_type = ''
        return self.word_type

if __name__ == '__main__':
    wordnet = Wordnet()
    my_file = wordnet.process_file()  
    print wordnet.word_type

Any help would be great 任何帮助都会很棒

Try this: 试试这个:

def check_word_type(self, filename):
    words = ['noun','verb','vrb','adj','adv'] #I am not sure if adj and adv are variables
    self.word_type = ''
    for i in words:
        if i in filename:
            self.word_type = str(i) #just make sure its string

    return self.word_type

You are not calling check_word_type() anywhere. 你不是在任何地方调用check_word_type() Try: 尝试:

def process_file(self):
    self.filename = "noun.txt"
    self.file = open(self.filename, "r")
    self.check_word_type(self, self.filename)
    return self.file, self.filename

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM