Re: Python-list Digest, Vol 32, Issue 209
which files? On Fri, 12 May 2006 [EMAIL PROTECTED] wrote: > Send Python-list mailing list submissions to > python-list@python.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mail.python.org/mailman/listinfo/python-list > or, via email, send a message with subject or body 'help' to > [EMAIL PROTECTED] > > You can reach the person managing the list at > [EMAIL PROTECTED] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Python-list digest..." > -- To steal information from a person is called plagiarism. To steal information from the enemy is called gathering intelligence. Have no fear of perfection - you will never reach it Teamwork is essential; it gives the enemy other people to shoot at. Consciousness: That annoying time between naps. -- http://mail.python.org/mailman/listinfo/python-list
Re: Question of speed - Flat file DBMS
OK, i forgot to mention this. The speed is a critical issue because there will be a competition and whosever solution is faster wins the prize. Hence will a python solution be as fast as a C++ solution?? aprameya On 4 Mar 2005, John Machin wrote: > > I.V. Aprameya Rao wrote: > > Hi > > > > I have to implement a flat file dbms. The basic condition is that > > relations will be given in files and i will have to run certain > select > > project join queries on those relations. > > > > Can someone tell me as to which language will be faster, python or > C++?? > > Faster to get a working app released: Python > > Faster to drive you nuts: C++ > > Faster processing the files: My hunch is C++, but not by much. After > you've shipped your working app (in Python), you'll still have lots of > spare time to tweak up the speed -- IF it's slow, if anybody notices, > and if anybody cares -- and this newsgroup usually provides a lively > response to "how do I make this faster" questions. > > > -- http://mail.python.org/mailman/listinfo/python-list
Question of speed - Flat file DBMS
Hi I have to implement a flat file dbms. The basic condition is that relations will be given in files and i will have to run certain select project join queries on those relations. Can someone tell me as to which language will be faster, python or C++?? Aprameya -- http://mail.python.org/mailman/listinfo/python-list
samba/windows shares
hi does anybody know how to access samba/windows shares on a network? is there any module that does this? i am running linux and i thought of using the mount command to mount that remote share and then access it, but i was wondering whether that is the right way? Aprameya -- http://mail.python.org/mailman/listinfo/python-list
long number multiplication
hi i have been wondering, how does python store its very long integers and perform aritmetic on it. i needed to implement this myself and was thinking of storing the digits of an integer in a list. however this would be very slow for operations like division etc. so if anyone can point me to some links or some method on how to do this i would appreciate it aprameya rao -- http://mail.python.org/mailman/listinfo/python-list