Ask your own question, for FREE!
Computer Science 9 Online
OpenStudy (anonymous):

why can i find ebook or tutorial of operating system that uses python examples in our school library all books dealing with operating system have java ,c,c++ examples

OpenStudy (anonymous):

What do you mean by tutorials of operating system that uses python? Do you want Python tutorials? Also what OS are you using?

OpenStudy (anonymous):

python programming in win32 book

OpenStudy (anonymous):

I honestly don't know if you'll find one. Most OSes are not written in Python.

OpenStudy (anonymous):

Ok, when I hear win32 I start thinking of the win32 API and then I think Graphical User Interface(GUI). So you want to create Windows/Graphics with Python on a Windows OS? If that is the case, there are many ways you can do this but the standard library that Python comes with is TkInter. You can use others toolkits such as wxPython or PyGUI and so on but to start with, I would use TkInter since it comes with Python. Open up notepad and insert the follow code from Tkinter import * root = Tk() w = Label(root, text="Whats up Doc?!") w.pack() root.mainloop() After coping the above code paste it into Notepad and then save it as win.py After you have created the python file, go to the file and double click on it and it should run a little GUI window that has a label of Whats up Doc?.

OpenStudy (anonymous):

Also, if you don't want the interpreter window to open with the GUI Window, save the file as win.pyw instead of win.py and if you want to learn more about TkInter here is a link http://www.pythonware.com/library/tkinter/introduction/

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!