I put a number into a file, but the next time I opened it with the Open() command, I put the number inside it, which was string, into a variable int() but the number was gone!!!
file = open('times.txt', 'r') # wrong = 4
print(file.read()) # wrong = 4
wrong = list(file.read()) # there is a problem, when is str not problem but if int => wrong = 0
print(wrong) # wrong = 0