python import text file code example

Example 1: python write to file

file = open(“testfile.txt”,”w”) 
 
file.write(“Hello World”) 
file.write(“This is our new text file”) 
file.write(“and this is another line.”) 
file.write(“Why? Because we can.”) 
 
file.close()

Example 2: open text file in python

f=open("Diabetes.txt",'r')
f.read()

Example 3: python file reading

fin = open("NAME.txt", 'r')
body = fin.read().split("\n")
line = fin.readline().strip()

Example 4: python import text file

f = open('words.txt', 'r')
#then to store
content = f.read()

Example 5: how to open a text file in python

f = open("demofile2.txt", "a")
f.write("Now the file has more content!")
f.close()

Tags:

Misc Example