Python Training in Chennai

2018-07-17 Thread sandy star
Python Training in Chennai with expert guidance and fully hands-on classes. Python is a high-level programming language sometimes it also denoted as the scripting language as it provides rapid & fast development and easy of use. url : https://www.besanttechnologies.com/training-courses/python-t

Python Training in Bangalore

2018-06-19 Thread sandy star
Python Training in Bangalore Best Python Training Courses in Bangalore – Marathahalli, BTM Layout, Rajajinagar & Jaya Nagar. We train the students from basic level to advanced concepts with a real-time environment. We are the Best Python Training Institute in bangalore. URL : https://www.be

Python 32 bit error

2015-10-26 Thread Joshua Star
I am running a 32 bit computer, (Windows XP) and when I finish with the installer program, I try to run either of the two executable files that are put on my computer and they both come up with the message "python.exe is not a valid Win32 application" Also, in the installer program, some of the

A way to convert RTF to HTML?

2009-12-27 Thread Star Glider
Hi, I'm converting an application to Python/PyQt, one of the tasks is to retrive data from a database and show it, no problem, the problem is that the one of the fields as text in rich text format, and it needs to be display without the RTF markup, of course. Is there any way to convert RTF to HTM

Re: Where do they tech Python officialy ?

2007-07-30 Thread Star
MIT's freshman survey, EECS 1 is taught in Python and Scheme, soon to be just Python. -Star On Wed, 25 Jul 2007, Bruno Desthuilliers wrote: Omari Norman a écrit : On Mon, Jul 23, 2007 at 10:48:10PM -0700, Paul Rubin wrote: If you're having trouble with Python because you

Re: How to write GUI and event separately in wxPython??

2007-07-30 Thread star . public
identical' -- the list() version would proabably have had me going 'huh?' even longer ^_^. -- [star for star in weaver] -- http://mail.python.org/mailman/listinfo/python-list

Re: Imported globals?

2007-07-27 Thread star . public
On Jul 27, 1:30 pm, Valentina Vaneeva <[EMAIL PROTECTED]> wrote: > Thank you, Gary, but I still have one question. What happens in the > second case? If I add a call to change_value() to module_a, the value > in module_b is imported changed. Why? What exactly does the import > statement import in

Re: From D

2007-07-25 Thread star . public
On Jul 25, 1:22 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > So, spaces will no longer be delimiters? Won't that cause > much wailing and gnashing of teeth? > I can't think of a circumstance in which 48 1906 is valid, so . . . I lik

Re: In a dynamic language, why % operator asks user for type info?

2007-07-17 Thread star . public
> > > Thanks, > > Karthik > > '%s' might be what your after as a more 'general purpose' moifier. > > - Paddy.- Hide quoted text - > > - Show quoted text - It is good for that; I generally use %s until I decide that something needs picky formatting. -- a = '%s Weaver' % random.choice(['Lani','Star','Azure']) a += 'is strange.' -- http://mail.python.org/mailman/listinfo/python-list

Re: Fetching a clean copy of a changing web page

2007-07-17 Thread star . public
e same thing).) (I mean really -- the playlists are stored as five megs of lists with elements that are dictionaries of one element, all looking exactly like this: \nTrack ID4521\n \n --- ) -- star -- http://mail.python.org/mailman/listinfo/python-list

Re: Pass by reference or by value?

2007-07-13 Thread star . public
object itself (x[n]=..., x.n=..., etc) affects anything that has a name for that object. Names are names, not variables. -- Weaver[0]=Star -- http://mail.python.org/mailman/listinfo/python-list

Re: New guy help with setup

2007-07-12 Thread star . public
On Jul 12, 5:55 pm, meg99 <[EMAIL PROTECTED]> wrote: > got the >>> prompt Type fun things at the >>> prompt, such as: >>> print 'Some Obligatroy Greeting Like "Hello World."' or >>> [x*5 for x in [1,2,3,4,5]] or >>> import os >>> os.listdir('.') >>> [os.isdir(x) for x in os.listdir('.')] A

Re: wxPython vs. Tkinter event loops

2007-07-11 Thread star . public
On Jul 11, 11:17 am, "Chris Mellon" <[EMAIL PROTECTED]> wrote: > No again. wxPython provides a Process class for executing external > applications and providing events in response to input, app exit, and > similar. You can also implement it in a similar way to your Tkinter > implementation, but ba

Re: OOP / language design question

2006-04-25 Thread cctv . star
Heiko Wundram wrote: > Because sometimes you don't want to call the base classes constructors? Sounds strange to me at the moment, but I'll try to adjust to this thought. > Python zen says: "Better explicit than implicit," and in this case it hits > the nail on the head. Better to see right away

Re: OOP / language design question

2006-04-25 Thread cctv . star
Diez B. Roggisch wrote: > I have another question for you: why does JAVA enforce that a constructor of > a base-class must be called prior to everything else in the derived class's > constructor? Well, I can imagine it's done to make sure that the base(s) are properly constructed. Sound s sensible

OOP / language design question

2006-04-25 Thread cctv . star
I was wondering, why you always have to remember to call bases' constructors explicitly from the derived class constructor? Why hasn't this been enforced by the language? -- http://mail.python.org/mailman/listinfo/python-list