ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/ns_dev/Python/learning/Tkinter/tk_test5.py
Revision: 8
Committed: Sat May 5 04:21:19 2012 UTC (13 years, 10 months ago) by ninoborges
Content type: text/x-python
Original Path: Python/NinoCode/learning/Tkinter/tk_test5.py
File size: 279 byte(s)
Log Message:
Initial Import

File Contents

# User Rev Content
1 ninoborges 8 #Tkinter file functions test
2    
3     from Tkinter import *
4     import tkSimpleDialog
5     import tkFileDialog
6     root = Tk()
7    
8     test=tkSimpleDialog.askstring("input your stuff here", "right here", parent=root)
9     print test
10     file=tkFileDialog.askopenfilename(parent=root)
11     print file
12     mainloop()