- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
Don't need to download. [CODE] image = PhotoImage(file='myimage.gif') label['image]' = image [/CODE] plz refer to the link: [URL="http://www.tkdocs.com/tutorial/fonts.html#images"]http://www.tkdocs.com/tutorial/fonts.html#images[/URL]
[CODE]def start(): global count_flag global answer answer=Questions() ...[/CODE] [CODE]def Submit(answer, entryWidget): ... if int(answer) != int(entryWidget.get().strip()): ... [/CODE]
I just do the exercises use your code. [URL="http://my-study-code.googlecode.com/svn/trunk/python2/wx_dynamic_add_remove_panel.py"]http://my-study-code.googlecode.com/svn/trunk/python2/wx_dynamic_add_remove_panel.py[/URL]
If PATH environment variable include your Python install directory,you can run: [ICODE]cd C:\Users\username\doocuments\"varios 2"\"python journey" python script1.py [/ICODE] or like this: [CODE]c:\python26\python script1.py [/CODE] In dos command window run "set PATH",can show PATH variable.
Use thread,what do you think? [URL="http://code.google.com/p/my-study-code/source/browse/trunk/python2/tk_dialog.py"]http://code.google.com/p/my-study-code/source/browse/trunk/python2/tk_dialog.py[/URL] [URL="http://code.google.com/p/my-study-code/source/browse/trunk/python2/dosomework.py"]http://code.google.com/p/my-study-code/source/browse/trunk/python2/dosomework.py[/URL]
You can capture screen active window by press Alt+Print Scrn key,then print it or save it to image file with mspaint.exe. or use some image capture tools
[CODE] def average(L): i=0 total=0.0 while i<len(L): total+=L[i] i+=1 return total/len(L) [/CODE]
The End.
askandstudy