Re: Python Learning
On 2017-12-15, Varun R wrote: > Hi All, > > I'm new to programming, can anyone guide me, how to start learning python > programming language,...plz suggest some books also. > > Thanks all IMHO These're must have look at: http://opim.wharton.upenn.edu/~sok/idtresources/python/instant-hacking.html https://www.learnpython.org https://docs.python.org/3.5/ http://stackoverflow.com -- Thank you -- https://mail.python.org/mailman/listinfo/python-list
Tkinter,show pictures from the list of files in catalog-problem
I have a problem with this code, it seems to work but first it shows the picture then supposed to iterate through file list and shows them each changed after 3seconds however show just the last one from list. https://paste.pound-python.org/show/txvB4IBtlUrn3TuB0rtu/ -- https://mail.python.org/mailman/listinfo/python-list
Re: Tkinter,show pictures from the list of files in catalog-problem
On 2017-12-19, MRAB wrote: >> > The function called by .after should return to the tkinter's event loop. > If you want to display a sequence of pictures, then the function should > call .after to make it call the function again. > > Here's a slightly reworked version: Thanks. I like your solution, thanks to you I've learned about os.walk, indeed makes everything easy. Thanks again -- https://mail.python.org/mailman/listinfo/python-list
Re: help me ?
On 2018-02-26, [email protected] wrote: > > Help me ! a=[1,2,3,] b=["a","b","c"] x=[] z=[] bonus=[] for digits in a: for letters in b: x.append(str(digits) + letters) bonus.append(letters + str(digits)) for letter in b: for number in a: z.append(letter + str(number)) bonus.append(str(number) + letter) print ("1:",x) print ("2:",z) print("Bonus:",bonus) -- https://mail.python.org/mailman/listinfo/python-list
Jedit
Just wondering if there is something out there like Jedit, but written in python ( not just supporting, but actually written in it.. ) Nothing large like Stanzi's or Boa.. Just something quick and simple, with code completion, and a debugger.. -- http://mail.python.org/mailman/listinfo/python-list
Re: Jedit
In article <[EMAIL PROTECTED]>, Peter Hansen <[EMAIL PROTECTED]> wrote: > ziggy wrote: > > Just wondering if there is something out there like Jedit, but written > > in python ( not just supporting, but actually written in it.. ) > > > > Nothing large like Stanzi's or Boa.. Just something quick and simple, > > with code completion, and a debugger.. > > Is that last part a joke? "Quick and simple", but with a debugger too? > > Anyway, peruse http://wiki.python.org/moin/PythonEditors and see if any > meet your requirements. > > -Peter Will do, tks. -- http://mail.python.org/mailman/listinfo/python-list
Re: [ANNOUNCE] Thirty-second release of PythonCAD now available
In article <[EMAIL PROTECTED]>, "Art Haas" <[EMAIL PROTECTED]> wrote: > Hi. > > I'm pleased to announce the thirty-second development release of PythonCAD, > a CAD package for open-source software users. As the name implies, > PythonCAD is written entirely in Python. The goal of this project is > to create a fully scriptable drafting program that will match and eventually > exceed features found in commercial CAD software. PythonCAD is released > under the GNU Public License (GPL). > > PythonCAD requires Python 2.2 or newer. The interface is GTK 2.0 > based, and uses the PyGTK module for interfacing to GTK. The design of > PythonCAD is built around the idea of separating the interface > from the back end as much as possible. By doing this, it is hoped > that both GNOME and KDE interfaces can be added to PythonCAD through > usage of the appropriate Python module. Addition of other PythonCAD > interfaces will depend on the availability of a Python module for that > particular interface and developer interest and action. > > The thirty-second release fixes a configuration problem where the > newly added autosplitting feature would not be activated properly > or could disable autosplitting in a Layer. A small bug in the > reworked splitting code was also fixed, as well as a few other > small errors. > > A mailing list for the development and use of PythonCAD is available. > Visit the following page for information about subscribing and viewing > the mailing list archive: > > http://mail.python.org/mailman/listinfo/pythoncad > > Visit the PythonCAD web site for more information about what PythonCAD > does and aims to be: > > http://www.pythoncad.org/ > > Come and join me in developing PythonCAD into a world class drafting > program! > > Art Haas Cool. -- http://mail.python.org/mailman/listinfo/python-list
