Python教程

python基础操作

本文主要是介绍python基础操作,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1. 按行读取文件

def readNode(filename):
   resultList = []
   with open(filename, 'r') as f:
       while True:
           line = f.readline() # string
           if not line:
               break
           if line[0] == '#':
               pass
           else:
               pageNode = line.split()
               resultList.append(pageNode)
   return resultList
这篇关于python基础操作的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!