Posts by Heriton Bacelar • 1 point
1 post
-
-2
votes1
answer128
viewsQ: Query data in a txt file with python Tkinter
I’m creating a simple system to query employee data stored in a file txt. def read_from_file(): with open('dados.txt') as file: for line in file: line = line.rstrip('\n') nome, matricula,…