Python:如何在读入文件时忽略#comment 行 [英] Python: How to ignore #comment lines when reading in a file

查看:21
本文介绍了Python:如何在读入文件时忽略#comment 行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 Python 中,我刚刚从文本文件中读取了一行,我想知道如何编写代码以忽略在行开头带有哈希 # 的注释.

In Python, I have just read a line form a text file and I'd like to know how to code to ignore comments with a hash # at the beginning of the line.

我认为应该是这样的:

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

但我是 Python 新手,不知道语法

But I'm new to Python and I don't know the syntax

推荐答案

你可以使用 startswith()

例如

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

这篇关于Python:如何在读入文件时忽略#comment 行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆