标签: list append startswith python-3.5
在python3.5中,如何生成包含数据的列表,但不包含任何注释?
我尝试过使用:
list1=[] if not startswith("#"): list1.append(data)
但数据也是一个列表。显然存在脱节。