Answers for "Read all the lines as a list in a file using the readlines() function"

0

Read all the lines as a list in a file using the readlines() function

# Program to read all the lines as a list in a file
#  using readlines() function

file = open("python.txt", "r")
content=file.readlines()
print(content)
file.close()
Posted by: Guest on September-25-2021

Code answers related to "Read all the lines as a list in a file using the readlines() function"

Python Answers by Framework

Browse Popular Code Answers by Language