If i input data like
username = "exampleusername"
password = "examplepassword"
email = "example@example.com"
year = "2018"
software work good but i need software read data from file and if do this
file = open("data.txt", "r")
username = file.readline()
password = file.readline()
email = file.readline()
year = file.readline()
i see this statement from website where i put this information enter image description here
This problem i see if i read data from file. I not see this problem if i give data in code. But i need to software read this data from file :)
sorry for my english i stil learn him.