Answers for "import txt file into python"

41

python read file

with open("file.txt", "r") as txt_file:
  return txt_file.readlines()
Posted by: Guest on November-30-2020
2

python import text file

f = open('words.txt', 'r')
#then to store
content = f.read()
Posted by: Guest on March-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language