python read python file code example
Example 1: python file reading
fin = open("NAME.txt", 'r')
body = fin.read().split("\n")
line = fin.readline().strip()
Example 2: how to open a text file in python
f = open("demofile2.txt", "a")
f.write("Now the file has more content!")
f.close()