Answers for "python remove n from readlines"

3

stripping /n in a readlines for a pytgon file

alist = [line.rstrip() for line in open('filename.txt')]
Posted by: Guest on August-24-2020
0

readlines replace n

with open(filename) as f:
    mylist = f.read().splitlines()
Posted by: Guest on December-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language