I stumbled today upon this IDE for the mac http://plotdevice.io/
From the looks of it, it seems like a nice tool for teaching/learning
Python. Too bad it's mac only. If you try it, do share your experience.
I don't use non-free operating systems, so I can't try it myself.
Regards,
Sebastian
El jue, 18 de sep 2014 a las 8:07 AM, Juan Christian
escribió:
On Wed, Sep 17, 2014 at 2:01 PM, Juan Christian
wrote:
I need to develop a GUI for my Python pogram, I already read the
GuiProgramming page (https://wiki.python.org/moin/GuiProgramming).
For me, the best so far was 'gui2py'.
El jue, 2 de oct 2014 a las 11:33 AM, David Rock
escribió:
A regex may be possible, but you will have similar issues to using
split.
In my humble experience, a regex is the way to go:
import re
ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', s )
you will get a list of IP addresses and can fil
Hi,
It's been almost a month since you asked but I have a novel suggestion
for you to try: /Jappy/.
Because of the nature of the web and existing browsers, you'll find that
Python is applied predominantly server-side.
While back-end programming can be interesting, I have recently become
aware of
Hi William,
Glad to see the tutor list is being of help in your learning.
On 14/06/17 09:20, William Gan wrote:
> if unit == 'C' or 'c':
In this case, it will always be true, because there are two conditions,
either:
* unit == 'C' or
* 'c'
As you can see, the second condition is not a co