Search Discussions
-
Dear All, In Python what is equivalent to goto statement regards, praba
Praba kar
Apr 20, 2005 at 9:23 am
Apr 28, 2005 at 9:02 pm -
http://python.org/doc/2.4.1/lib/module-re.html http://python.org/doc/2.4.1/lib/node114.html --------- QUOTE The module defines several functions, constants, and an exception. Some of the functions ...
Xah Lee
Apr 12, 2005 at 10:25 am
May 13, 2005 at 4:28 pm -
For the riddles' lovers among you, you are most invited to take part in the Python Challenge, the first python programming riddle on the net. You are invited to take part in it at: ...
Pythonchallenge
Apr 29, 2005 at 8:38 pm
May 27, 2005 at 5:22 am -
Many people I know ask why Python does slicing the way it does..... Can anyone /please/ give me a good defense/justification??? I'm referring to why mystring[:4] gives me elements 0, 1, 2 and 3 but ...
Seberino
Apr 20, 2005 at 5:58 am
Apr 28, 2005 at 3:31 pm -
Is anyone capable of providing Python advantages over PHP if there are any? Cheers, L.
Lad
Apr 23, 2005 at 11:14 am
May 11, 2005 at 2:45 pm -
Shriram Krishnamurthi has just announced the following elsewhere; it might be of interest to c.l.s, c.l.f, and c.l.p: http://list.cs.brown.edu/pipermail/plt-scheme/2005-April/008382.html The Fate Of ...
Daniel Silva
Apr 1, 2005 at 7:18 am
Apr 7, 2005 at 10:38 pm -
I need to figure out how to compute pi to base 12, to as many digits as possible. I found this reference, <http://mathworld.wolfram.com/Base.html , but I really don't understand it well enough. Could ...
Dick Moores
Apr 13, 2005 at 9:06 am
Apr 18, 2005 at 10:55 pm -
Read through python site for programming tool, really plenty of choices :-) (For c++, I just can't breath with very very limited choices) Tried Spe, it come with wxGlade built-in very nice(is Spe ...
Monkey
Apr 27, 2005 at 1:16 pm
May 3, 2005 at 2:44 pm -
I've been using python to write a simple 'launcher' for one of our Java applications for quite a while now. I recently updated it to use python 2.4, and all seemed well. Today, one of my colleagues ...
Michael Kearns
Apr 11, 2005 at 3:32 pm
Apr 25, 2005 at 10:30 am -
44
Variables
To All: Folks, I need your help. I have a friend who claims that if I write: foo = 5 then foo is NOT a variable, necessarily. If you guys can define for me what a variable is and what qualifications ...Richard Blackwood
Apr 24, 2005 at 2:20 am
Apr 25, 2005 at 3:26 pm -
42
Best editor?
When not using the interactive prompt, what are you using? I keep hearing everyone say Emacs, but I can't understand it at all. I keep trying to learn and understand why so many seem to like it ...ChinStrap
Apr 5, 2005 at 6:22 pm
Apr 14, 2005 at 4:13 am -
I've used the standard unittest (pyunit) module on a few projects in the past and have always thought it basicly worked fine but was just a little too complicated for what it did. I'm starting a new ...
Roy Smith
Apr 1, 2005 at 2:04 am
Apr 6, 2005 at 5:19 pm -
Here is a pre-PEP for what I call "suite-based keyword arguments". The mechanism described here is intended to act as a complement to thunks. Please let me know what you think. Suite-Based Keyword ...
Brian Sabbey
Apr 15, 2005 at 11:45 pm
Apr 19, 2005 at 5:02 am -
Hi, I've been using Python for about 2 years now, for my honours project and now my postgrad project. I must say that I am loving it more and more now. From my knowledge, Python bytecodes are not ...
Maurice LING
Apr 24, 2005 at 10:19 am
Apr 30, 2005 at 9:40 pm -
I was messing around in google looking for the available python form validation modules when i found this: http://www.jorendorff.com/articles/python/path/, and i realized that is very similar to my ...
Vegetax
Apr 8, 2005 at 9:15 am
Apr 11, 2005 at 9:51 pm -
The reason some people don't know for sure if they are going to Heaven when they die is because they just don't know. The good news is that you can know for sure that you are going to Heaven which is ...
RonGrossi382737
Apr 21, 2005 at 3:43 pm
May 1, 2005 at 1:31 am -
Hi all, I am new to programming, already have a glace on introduction of c++, java and finally decided on python. But I found that the .py file is just like the source file, how can I make a program ...
Monkey
Apr 26, 2005 at 11:04 pm
May 1, 2005 at 1:16 pm -
Hi, I am interested in regular expressions and how Perl and Python compare. Particulary, I am interested in performance (i.e. speed), memory usage, flexibility, completeness (i.e. supports simple and ...
Codecraig
Apr 21, 2005 at 2:01 pm
Apr 26, 2005 at 5:17 am -
I was having some difficulty figuring out just what was going on with decorators. So after a considerable amount of experimenting I was able to take one apart in a way. It required me to take a ...
Ron_Adam
Apr 2, 2005 at 2:29 pm
Apr 6, 2005 at 1:07 am -
Is there any way to get regexes to work on non-string/unicode objects. I would like to split large files by regex and it seems relatively hard to do so without having the whole file in memory. Even ...
Robin Becker
Apr 25, 2005 at 3:01 pm
Apr 29, 2005 at 9:33 am -
Here is a first draft of a PEP for thunks. Please let me know what you think. If there is a positive response, I will create a real PEP. I made a patch that implements thunks as described here. It is ...
Brian Sabbey
Apr 15, 2005 at 11:44 pm
Apr 20, 2005 at 3:24 pm -
Supercomputer and encryption and compression @ rate of 96% Take a document then or a 3D matrix document change it two random or binary code or just a program for 0's and 1's and fold it over and over ...
C3poptuse
Apr 14, 2005 at 9:27 am
May 11, 2005 at 2:45 pm -
I want to parse a very large (2.4 gig) XML file (bioinformatics ofcourse :)) But I have no clue how to do that. Most things I see read the entire xml file at once. That isn't going to work here ...
Willem Ligtenberg
Apr 16, 2005 at 1:24 pm
Apr 23, 2005 at 4:16 pm -
Hi, I've been looking into ways of creating singleton objects. With Python2.3 I usually used a module-level variable and a factory function to implement singleton objects. With Python2.4 I was ...
Uwe Mayer
Apr 11, 2005 at 3:26 pm
Apr 13, 2005 at 4:28 am -
Hello I need to build table which need searching data which needs more power then dictionary or list in python, can anyone help me what kind of database suitable for python light and easy to learn. ...
Ajikoe
Apr 11, 2005 at 5:32 am
Apr 14, 2005 at 10:46 pm -
Are there any plans in the near future to support PDF files in Python as thoroughly and completely as Perl does? http://cpan.uwinnipeg.ca/search?query=pdf&mode=dist I love Python's clean syntax and ...
Rbt
Apr 25, 2005 at 1:23 pm
Apr 27, 2005 at 11:09 pm -
Ok, we've added list comprehensions to the language, and seen that they were good. We've added generator expressions to the language, and seen that they were good as well. I'm left a bit confused, ...
Mike Meyer
Apr 25, 2005 at 5:28 am
Apr 27, 2005 at 2:07 am -
Hi All, I am Windows Systems Administrator(planning to migrate to Linux administration in near future), I have occassionally written few batch files and Vbscripts to automate my tasks. Now I have ...
Kanthi Kiran Narisetti
Apr 11, 2005 at 9:08 pm
Apr 14, 2005 at 6:24 am -
re: 4.2.1 Regular Expression Syntax http://docs.python.org/lib/re-syntax.html *?, +?, ?? Adding "?" after the qualifier makes it perform the match in non-greedy or minimal fashion; as few characters ...
Lothar
Apr 3, 2005 at 3:47 pm
Apr 6, 2005 at 10:12 pm -
Hi all... I think wxPython is much better than PyGTK. First of all, PyGTK needs the GTK runtime installed, whereas wxPython is entirely Python's modules, so It facilitates the apps' distribution. ...
Dcrespo
Apr 25, 2005 at 3:56 pm
Apr 28, 2005 at 3:41 am -
I have been developing a python module for Markov chain Monte Carlo estimation, in which I frequently compare variable values with a very large number, that I arbitrarily define as: inf = 1e10000 ...
Chris Fonnesbeck
Apr 7, 2005 at 7:48 pm
Apr 8, 2005 at 10:51 pm -
Hi, Thanks again for all the helping me understand the details of decorators. I put together a class to create decorators that could make them a lot easier to use. It still has a few glitches in it ...
Ron_Adam
Apr 4, 2005 at 8:02 pm
Apr 6, 2005 at 9:19 pm -
Dear All, I am new to Python. I want to know how to work with ternary operator in Python. I cannot find any ternary operator in Python. So Kindly clear my doubt regarding this Yahoo! Messenger Show ...
Praba kar
Apr 1, 2005 at 7:24 am
Apr 2, 2005 at 5:21 pm -
Hi All! I know there has been a post about Python licencing but I have different questions. I tried to Google for "Python Licence" and "Python Licencing" but I could not find the answer. Is there a ...
Laszlo Zsolt Nagy
Apr 22, 2005 at 6:54 pm
Apr 26, 2005 at 2:20 pm -
Hello, Some months ago i did a port of the Python2.3.2 interpreter to PalmOS. I didnt port any C module or created modules for PalmOS API's. But you can run an interpreter and use stdin/stdout from a ...
Lucio Torre
Apr 15, 2005 at 11:40 pm
Apr 21, 2005 at 10:11 am -
Hi: If I am getting the docs etc. correctly, the string-module is depricated and is supposed to be removed with the release of Python 3.0. I still use the module a lot and there are situations in ...
Andreas Beyer
Apr 1, 2005 at 4:32 am
Apr 4, 2005 at 9:43 pm -
I've got a file that seems to come across more like a dictionary from what I can tell. Something like the following format: ###,1,val_1,2,val_2,3,val_3,5,val_5,10,val_10 ...
Peter A. Schott
Apr 28, 2005 at 11:34 pm
May 3, 2005 at 9:34 pm -
Hi all Is this the best way to preallocate a list of integers? listName = range(0,length) What about non integers? I've just claimed in the newsgroup above that pre-allocating helps but I might be ...
Jim
Apr 13, 2005 at 12:48 pm
Apr 14, 2005 at 10:16 am -
This may be a very rudimentary question, but here goes: If I have a simple dictionary, where the value is a class or function, is there an interface through which it can discover what its key is? ...
Matthew Thorley
Apr 8, 2005 at 3:30 pm
Apr 8, 2005 at 9:07 pm -
I have to sort a list, but in addition to the sorting, I need to compute a phase factor that is +1 if there is an even number of interchanges in the sort, and -1 if there is an odd number of ...
RickMuller
Apr 6, 2005 at 10:30 pm
Apr 7, 2005 at 6:49 pm -
I didn't think this would be as difficult as it now seems to me. I am reading in a csv file that documents a bunch of different info on about 200 books, such as title, author, publisher, isbn, date ...
Googleboy
Apr 27, 2005 at 5:34 pm
May 5, 2005 at 12:51 am -
I was thinking about something like the following; Traceback (most recent call last): File "<stdin ", line 1, in ? NameError: name 't' is not defined or [<function <lambda at 0x403dcc6c , <function ...
Mehmetmutigozel
Apr 22, 2005 at 9:41 pm
Apr 26, 2005 at 1:37 am -
Fellow Pythonistas, Please check out http://spyced.blogspot.com/2005/04/how-well-do-you-know-python-part-3.html if you haven't done so yet. It appears that you can specify a function explicitly to ...
AdSR
Apr 18, 2005 at 8:05 pm
Apr 20, 2005 at 5:53 am -
The Greatest News Ever! http://groups-beta.google.com/group/alt.politics.bush/browse_thread/thread/f9b35b05a72da1e1/66f1a43881a0fe82#66f1a43881a0fe82 ...
RonGrossi_38_2513
Apr 13, 2005 at 6:27 pm
Apr 16, 2005 at 9:51 pm -
i have read the book and searched the group too ---------------------------------------------- im not gettin it. i want to read a global (OPTIONS) from file1 from a class method (func1) in file2 i ...
Fred.dixon
Apr 13, 2005 at 1:08 am
Apr 16, 2005 at 2:07 pm -
I have made a module derived from the Queue module deliverd with python 2.3. I would like to make this module (called tube) available for other people. However it is not clear to me how I can do this ...
Antoon Pardon
Apr 12, 2005 at 8:51 am
Apr 14, 2005 at 10:20 am -
I'm looking for a design to a problem I came across, which goes like this (no, it's not homework): 1. There is a (single inheritance) hierarchy of domain classes, say A<-B<-..<-Z (arrows point to the ...
George Sakkis
Apr 8, 2005 at 11:42 pm
Apr 11, 2005 at 11:08 am -
In searching I find there several different ways to connect to an Oracle server on MS Windows: mxODBC - http://www.egenix.com/files/python/mxODBC.html built on top of the ODBC drivers for a given ...
Andrew Dalke
Apr 5, 2005 at 6:43 pm
May 10, 2005 at 10:43 pm -
Is there a general way of injecting code into a function, typically before and/or after the existing code ? I know that for most purposes, an OO solution, such as the template pattern, is a cleaner ...
George Sakkis
Apr 25, 2005 at 10:32 am
Apr 26, 2005 at 5:35 pm -
Hello, I am looking for a nice way to take only those charachters from a string that are in another string and make a new string: "Bad" I can write this like this: astr = "Bob Carol Ted Alice" ...
James Stroud
Apr 19, 2005 at 8:33 pm
Apr 21, 2005 at 7:32 pm
Group Overview
group | python-list |
categories | python |
discussions | 864 |
posts | 4,975 |
users | 1,029 |
website | python.org |
1,029 user for April 2005
Archives
- September 2015 (591)
- August 2015 (1,058)
- July 2015 (1,440)
- June 2015 (1,704)
- May 2015 (1,841)
- April 2015 (1,231)
- March 2015 (1,717)
- February 2015 (1,612)
- January 2015 (889)
- December 2014 (1,283)
- November 2014 (1,600)
- October 2014 (1,447)
- September 2014 (1,031)
- August 2014 (1,867)
- July 2014 (1,618)
- June 2014 (1,357)
- May 2014 (1,431)
- April 2014 (1,285)
- March 2014 (2,093)
- February 2014 (1,999)
- January 2014 (2,089)
- December 2013 (2,060)
- November 2013 (2,507)
- October 2013 (1,932)
- September 2013 (1,634)
- August 2013 (1,532)
- July 2013 (2,062)
- June 2013 (2,795)
- May 2013 (1,935)
- April 2013 (1,980)
- March 2013 (1,953)
- February 2013 (1,789)
- January 2013 (1,924)
- December 2012 (1,569)
- November 2012 (1,579)
- October 2012 (1,961)
- September 2012 (2,311)
- August 2012 (1,808)
- July 2012 (1,577)
- June 2012 (1,199)
- May 2012 (1,197)
- April 2012 (1,416)
- March 2012 (1,373)
- February 2012 (1,442)
- January 2012 (1,446)
- December 2011 (1,895)
- November 2011 (1,291)
- October 2011 (1,188)
- September 2011 (1,587)
- August 2011 (2,069)
- July 2011 (2,140)
- June 2011 (1,908)
- May 2011 (2,475)
- April 2011 (2,098)
- March 2011 (1,761)
- February 2011 (1,746)
- January 2011 (2,123)
- December 2010 (1,671)
- November 2010 (2,355)
- October 2010 (2,518)
- September 2010 (2,187)
- August 2010 (3,098)
- July 2010 (2,579)
- June 2010 (3,238)
- May 2010 (2,458)
- April 2010 (2,356)
- March 2010 (2,759)
- February 2010 (3,486)
- January 2010 (3,294)
- December 2009 (2,899)
- November 2009 (3,396)
- October 2009 (3,346)
- September 2009 (3,087)
- August 2009 (3,903)
- July 2009 (3,761)
- June 2009 (3,321)
- May 2009 (3,370)
- April 2009 (4,272)
- March 2009 (4,228)
- February 2009 (3,965)
- January 2009 (4,732)
- December 2008 (4,335)
- November 2008 (3,799)
- October 2008 (4,123)
- September 2008 (3,816)
- August 2008 (4,056)
- July 2008 (4,238)
- June 2008 (3,737)
- May 2008 (4,976)
- April 2008 (4,708)
- March 2008 (4,122)
- February 2008 (4,132)
- January 2008 (4,145)
- December 2007 (3,686)
- November 2007 (3,419)
- October 2007 (4,234)
- September 2007 (4,332)
- August 2007 (4,189)
- July 2007 (3,771)
- June 2007 (4,142)
- May 2007 (5,018)
- April 2007 (4,912)
- March 2007 (4,365)
- February 2007 (3,951)
- January 2007 (3,864)
- December 2006 (4,449)
- November 2006 (4,229)
- October 2006 (5,506)
- September 2006 (5,244)
- August 2006 (4,829)
- July 2006 (4,720)
- June 2006 (5,054)
- May 2006 (5,302)
- April 2006 (4,845)
- March 2006 (5,729)
- February 2006 (4,839)
- January 2006 (5,249)
- December 2005 (5,011)
- November 2005 (5,677)
- October 2005 (5,387)
- September 2005 (4,458)
- August 2005 (4,428)
- July 2005 (4,472)
- June 2005 (4,562)
- May 2005 (4,269)
- April 2005 (5,019)
- March 2005 (5,070)
- February 2005 (5,159)
- January 2005 (5,194)
- December 2004 (5,211)
- November 2004 (4,048)
- October 2004 (5,191)
- September 2004 (5,534)
- August 2004 (6,168)
- July 2004 (4,217)
- June 2004 (4,202)
- May 2004 (3,890)
- April 2004 (4,285)
- March 2004 (5,077)
- February 2004 (4,213)
- January 2004 (3,988)
- December 2003 (3,818)
- November 2003 (4,940)
- October 2003 (6,297)
- September 2003 (4,299)
- August 2003 (5,654)
- July 2003 (4,912)
- June 2003 (4,933)
- May 2003 (4,938)
- April 2003 (5,017)
- March 2003 (5,031)
- February 2003 (7,701)
- January 2003 (6,229)
- December 2002 (4,102)
- November 2002 (4,346)
- October 2002 (3,307)
- September 2002 (4,206)
- August 2002 (4,919)
- July 2002 (4,826)
- June 2002 (4,215)
- May 2002 (5,295)
- April 2002 (5,967)
- March 2002 (5,323)
- February 2002 (5,245)
- January 2002 (5,617)
- December 2001 (4,443)
- November 2001 (4,565)
- October 2001 (3,669)
- September 2001 (3,719)
- August 2001 (5,208)
- July 2001 (6,528)
- June 2001 (4,905)
- May 2001 (5,492)
- April 2001 (4,713)
- March 2001 (4,478)
- February 2001 (3,871)
- January 2001 (4,187)
- December 2000 (3,099)
- November 2000 (2,336)
- October 2000 (3,820)
- September 2000 (3,933)
- August 2000 (4,253)
- July 2000 (4,199)
- June 2000 (4,089)
- May 2000 (4,269)
- April 2000 (3,217)
- March 2000 (3,719)
- February 2000 (4,000)
- January 2000 (2,682)
- December 1999 (2,283)
- November 1999 (1,896)
- October 1999 (2,048)
- September 1999 (2,001)
- August 1999 (2,151)
- July 1999 (2,351)
- June 1999 (2,386)
- May 1999 (2,201)
- April 1999 (1,706)
- March 1999 (6)
- February 1999 (1)