#reading a txt file using a context manager
with open("my_file.txt","r") as text:
print(text.readlines()) #prints a list of lines in the txt file
print(text.readline()) #prints the first line of the txt file
print(text.read(4)) #prints the first four characters of the txt file