How to Import a File in Python

by matt392 in Circuits > Software

603 Views, 9 Favorites, 0 Comments

How to Import a File in Python

importstamp.jpg
pythonlogo.png

Program that imports/reads in a file and prints it out by line and word.

Be sure to include the text file in the same directory as the Python program.

Import a File Code

# Program that reads in a file and prints it out by line and field 
alphafile = open("testfile.txt")
for line in alphafile:
print ("Printing a line: ")
# Remove the newline character from each line using the strip function
line = line.strip("\n")
print (line)
# Separate out each word using the split function
word = line.split()
print ("Printing by the word: ")
print (word)

# testfile.txt
# To be or not to be
# That is the question.
# Whether tis nobler in the mind
# To suffer the slings and arrows of outrageous fortune.
# Or to take arms against a sea of troubles.