Data Append in File.py

# By "a" extension we add some Thing in file
# if file is not create it create a file and add text
f = open("input.txt", "a")

f.write("\nMy Favourite Sir is Jugal Krishna Das")
f.write("\nI live in Dhaka")

f.close()

Comments