Python Forum
[Tkinter] output "os" in frame
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] output "os" in frame
#1
Hello to all.
I created a frame and two buttons, I assigned two functions to the buttons, one closes the window, the other displays the / etc / fstab file in the shell.
I would like to be able to view the output of the second function within the frame.

from tkinter import *
import os

#window
mywin=Tk()

#function about to close window
def close_window (root): 
    root.destroy()

#function about to read fstab
def fstab():
    os.system("cat /etc/fstab")

#size window
mywin.geometry("600x400+600+100")
mywin.title('WINDOW')

#text in window
mytext=Label(text='View', fg='white', bg='black', font=('Helvetica',30)).pack()

#button GO!
gobutton=Button(text='GO!', command = fstab).pack()

#frame for my output
myframe=Frame(width=300, height=300).pack()

#button Exit
exitbutton=Button (mywin, text="Exit", command = lambda: close_window(mywin)).pack()

#go mainloop
mywin.mainloop()
Reply


Messages In This Thread
output "os" in frame - by m_clayton - May-25-2018, 03:52 PM
RE: output "os" in frame - by woooee - May-25-2018, 07:57 PM
RE: output "os" in frame - by m_clayton - May-26-2018, 10:12 PM
RE: output "os" in frame - by woooee - May-27-2018, 04:06 AM
RE: output "os" in frame - by m_clayton - May-27-2018, 08:51 PM
RE: output "os" in frame - by m_clayton - May-28-2018, 02:49 PM
RE: output "os" in frame - by m_clayton - May-29-2018, 12:14 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Scrollbar, Frame and size of Frame Maksim 2 9,086 Sep-30-2019, 07:30 AM
Last Post: Maksim
  [Tkinter] create and insert a new frame on top of another frame atlass218 4 11,250 Apr-18-2019, 05:36 PM
Last Post: atlass218
  [Tkinter] Frame size only works if frame is empty(Solved) Tuck12173 7 6,535 Jan-29-2018, 10:44 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020