gpt4 book ai didi

Python:读取文件时如何忽略#comment行

转载 作者:IT老高 更新时间:2023-10-28 21:33:51 33 4
gpt4 key购买 nike

在 Python 中,我刚刚从文本文件中读取了一行,我想知道如何编写代码以忽略行首带有井号 # 的注释。

我觉得应该是这样的:

for 
if line !contain #
then ...process line
else end for loop

但我是 Python 新手,不懂语法

最佳答案

您可以使用 startswith()

例如

for line in open("file"):
li=line.strip()
if not li.startswith("#"):
print line.rstrip()

关于Python:读取文件时如何忽略#comment行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1706198/

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