gpt4 book ai didi

python - 如何提取文件python中的文本

转载 作者:太空宇宙 更新时间:2023-11-04 00:53:12 26 4
gpt4 key购买 nike

如何使用 python 提取文件中的文本。- 以 chaine 开头的文本。

我的代码是

fichier= open("Service.txt", "r")
for ligne in fichier:
if ligne==chaine:
#What do I do ?
fichier.close()

最佳答案

如果我正确理解问题:

测试.txt

fsdfj ljkjl
sdfsdf ljkkk
some ldfff
fffl lll
ppppp

脚本:

chaine = 'some'

with open("test.txt", "r") as f:
text = f.read()
i = text.find(chaine)
print(text[i:])

输出:

some ldfff
fffl lll
ppppp

关于python - 如何提取文件python中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36203425/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com