Answers for "remove \n readlines in python"

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

Python Answers by Framework

Browse Popular Code Answers by Language