gpt4 book ai didi

python - 如何在 python 中将某些行存储在变量中?

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

我有这个代码:

with open("/etc/network/interfaces", "r") as file:
content = file.read()
print content

它正在工作并显示:

enter image description here

如何在变量中存储任何单词并打印该单词?

最佳答案

with open("/etc/network/interfaces", "r") as file:
for line in file:
words=line.split(' ')#break the line into a list of words.
print(words[0],words[1]) #

我还没有测试过,但给你一个想法。

关于python - 如何在 python 中将某些行存储在变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39899142/

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