get data from file python 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: how to write a python variable to a file
import pickle
dict = {'one': 1, 'two': 2}
file = open('dump.txt', 'w')
pickle.dump(dict, file)
file.close()
file = open('dump.txt', 'r')
dict = pickle.load(file)
Example 3: python create file
f= open("guru99.txt","w+")