美文网首页
Python 按行读取文件

Python 按行读取文件

作者: GloryMan | 来源:发表于2022-02-22 16:20 被阅读0次

    import re

    def read_file_text():
    s = []
    f = open('yingyu.txt', 'r')
    for lines in f:
    ls = lines.strip(' ').replace(' ', '').replace('\n', '').replace('?', '').split('/')
    for inx,val in enumerate(ls):
    s.append(val)
    print(s)
    f.close()

    Press the green button in the gutter to run the script.

    if name == 'main':
    read_file_text()

    相关文章

      网友评论

          本文标题:Python 按行读取文件

          本文链接:https://www.haomeiwen.com/subject/glmglrtx.html