Re: [Tutor] debug and execute python code in Mac

2014-08-27 Thread Sebastian Silva
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

Re: [Tutor] GUI development with Python 3.4.1

2014-09-18 Thread Sebastian Silva
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'.

Re: [Tutor] printing all text that begins with "25"

2014-10-02 Thread Sebastian Silva
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

Re: [Tutor] best Python Web-Development Applications framework.

2017-06-06 Thread Sebastian Silva
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

Re: [Tutor] Fahrenheit to Celsius Conversion another problem and Programming Paradigm

2017-06-14 Thread Sebastian Silva
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