Sorry I didn't get back earlier. But in short: Thank you!
Kind Regards,
Bjorn
On 3 May 2012 00:01, Alan Gauld wrote:
> Does anyone know if it is possible during run-time to:
>>> a) add attributes to classes, which will unknown at program start, but
>>> "emerge" later whilst the program is runnin
On Fri, May 4, 2012 at 10:12 AM, Dave Angel wrote:
> On 05/04/2012 09:29 AM, Lion Chen wrote:
>> Hi, All,
>> here are the codes:
>>
>> class a:
>> pass
>>
>>
>> i = a ()
>> j = a ()
>> k = a ()
>>
>> i < j returns True
>>
>> j < k returns False
>>
>> why?
>>
>> Lion Chen
>> ___
于 2012年05月04日 22:12, Dave Angel 写道:
On 05/04/2012 09:29 AM, Lion Chen wrote:
Hi, All,
here are the codes:
class a:
pass
i = a ()
j = a ()
k = a ()
i< j returns True
j< k returns False
why?
Lion Chen
___
Tutor maillist - Tutor@python.org
To u
On 05/04/2012 09:57 AM, Santosh Kumar wrote:
> I am doing:
power = 10 ** 30
power
> and the output:
1...L # what does L represent
> interesting thing is L doesn't shows when I do a: print power
> ___
The L stands for "long".
On 05/04/2012 09:29 AM, Lion Chen wrote:
> Hi, All,
> here are the codes:
>
> class a:
> pass
>
>
> i = a ()
> j = a ()
> k = a ()
>
> i < j returns True
>
> j < k returns False
>
> why?
>
> Lion Chen
> ___
> Tutor maillist - Tutor@python.org
> To unsub
On Fri, May 4, 2012 at 9:29 AM, Lion Chen wrote:
Hi, All,
here are the codes:
class a:
pass
i = a ()
j = a ()
k = a ()
i< j returns True
j< k returns False
why?
Lion Chen
___
Tutor maillist - Tutor@python.org
To unsubscribe or change subsc
On Fri, May 4, 2012 at 9:57 AM, Santosh Kumar wrote:
> I am doing:
power = 10 ** 30
power
>
> and the output:
1...L # what does L represent
>
> interesting thing is L doesn't shows when I do a: print power
> ___
> Tutor mailli
On Fri, May 4, 2012 at 9:29 AM, Lion Chen wrote:
> Hi, All,
> here are the codes:
>
> class a:
> pass
>
>
> i = a ()
> j = a ()
> k = a ()
>
> i < j returns True
>
> j < k returns False
>
> why?
>
> Lion Chen
> ___
> Tutor maillist - Tutor@python.org
>
I am doing:
>>> power = 10 ** 30
>>> power
and the output:
>>> 1...L # what does L represent
interesting thing is L doesn't shows when I do a: print power
___
Tutor maillist - Tutor@python.org
To unsubscribe or change subscription options
Hi, All,
here are the codes:
class a:
pass
i = a ()
j = a ()
k = a ()
i < j returns True
j < k returns False
why?
Lion Chen
___
Tutor maillist - Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listin
On 04/05/2012 02:02, Mark Lawrence wrote:
On 03/05/2012 23:56, Emile van Sebille wrote:
On 5/3/2012 2:28 PM Adrian said...
I recently created a gui form using tkinter, is it possible to
integrate this form to my website page? How do i integrate?
pyjs aka pyjamas allows you to write once and
goog cheng wrote:
> Hi, I got this problem :
>
> #!python
> # -*- coding: utf-8 -*-
> import re
>
> p = re.compile(ur'\bc123\b')
> print '**',p.search('no class c123 at all').group()
>
> p = re.compile(ur'\b\u7a0b\u6770\b')
> print ur'\u7a0b\u6770'
> print '',p.search(' 程杰 abc'.decode('utf
12 matches
Mail list logo