Similar Posts

Subscribe
Notify of
2 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
regex9
1 year ago

Read file content:

with open("path to text file") as file:
  content = file.read()

Set label content:

# on init:
some_label = Label(root, text = content)

# or later:
some_label.config(text = content)