返回

python—在充满随机字母的文本文件中查找随机单词的位置

发布时间:2022-05-31 11:52:56 284
# node.js

我在这件事上已经坚持了几个小时了,似乎无法克服它。我只想找到一个单词在所附文本文件中弹出的所有不同时间以及它的位置。指数

我认为将word和文本文件转换为列表可能会有所帮助,但遗憾的是。这是我现在拥有的。这是我正在使用的文本文件的粘贴箱https://pastebin.com/MtjkvHaf

import string
import random
import os.path
def findWord(filename:str, word:str):
    if os.path.isfile(filename) == True:
        f = open(filename, 'r')
        fStr = str(f.read())
        location = []
        charList = []
        wordList = []
        i = 0
        j = 0

        #converts word to list
        for l in word:
            wordList.append(l)
    
        #converts text file to list
        for line in fStr:
            for c in line:
                charList.append(c)
        
        
        for i in charList:
            if wordList[0] == charList[i]:
                pos = i
                location.append(pos)
        print(location)
       
                
    else:
    print("File not found")
    
findWord("random_letters_05292022_1902.txt", "potato")
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(1)
按点赞数排序
用户头像