Re: Python Interview Questions

2007-10-30 Thread Krypto
> Good luck with your interviewing and hope this helped, > > -tkc Well, I was looking exactly for this. Many thanks to you Tim. After going through your list I came to know that I know nothing in Python and have to catch up a whole lot. -- http://mail.python.org/mailman/listinfo/python-list

Python Interview Questions

2007-10-30 Thread Krypto
Hi, I have used Python for a couple of projects last year and I found it extremely useful. I could write two middle size projects in 2-3 months (part time). Right now I am a bit rusty and trying to catch up again with Python. I am now appearing for Job Interviews these days and I am wondering if

python shell

2007-05-16 Thread Krypto
I have been using python shell to test small parts of the big program. What other ways can I use the shell effectively. My mentor told me that you can virtually do anything from testing your program to anything in the shell. Any incite would be useful. -- http://mail.python.org/mailman/listinfo/p

Python Power Point Slides

2007-05-14 Thread Krypto
Hi, I want to give a short presentation in my group about benefits of python, why should one use python and some basic starting information about python, about its data type, etc. Can somebody point me to the right references on the web. I have searched a lot and I do get quite a few but I though

Suggestions on Starting Python Project on P2P streaming

2007-02-07 Thread Krypto
I am 3 months old to python and I have done some small projects. I want to build a Peer to Peer streaming client ..something like BitTorrent. I know it is daunting but I got to start somewhere. Please come easy on me. What I want in my client program is that client software logs on to some P2P str

Re: division by 7 efficiently ???

2007-02-01 Thread Krypto
The correct answer as told to me by a person is (N>>3) + ((N-7*(N>>3))>>3) The above term always gives division by 7 -- http://mail.python.org/mailman/listinfo/python-list

Re: division by 7 efficiently ???

2007-01-31 Thread krypto . wizard
Its not an homework. I appeared for EA sports interview last month. I was asked this question and I got it wrong. I have already fidlled around with the answer but I don't know the correct reasoning behind it. Thanks, On Jan 31, 10:01 pm, Ben Finney <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED]

division by 7 efficiently ???

2007-01-31 Thread krypto . wizard
How to divide a number by 7 efficiently without using - or / operator. We can use the bit operators. I was thinking about bit shift operator but I don't know the correct answer. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Debugger / IDE ??

2006-03-15 Thread krypto . wizard
I like the Pyscripter, is there any Linux version or something of it. Christoph Zwerschke wrote: > [EMAIL PROTECTED] schrieb: > > Is there any editor or IDE in Python (either Windows or Linux) which > > has very good debugging facilites like MS VisualStudio has or something > > like that. > > > > I

Re: Python Debugger / IDE ??

2006-03-14 Thread krypto . wizard
My code has got big and it is an iterative program. I use print statements but I thought I could get something handy it would be useful to me. thanks -- http://mail.python.org/mailman/listinfo/python-list

Python Debugger / IDE ??

2006-03-14 Thread krypto . wizard
Is there any editor or IDE in Python (either Windows or Linux) which has very good debugging facilites like MS VisualStudio has or something like that. I like SPE but couldn't easily use winPDP. I need tips to debug my code easily. Every help is greatly appreciated. Thanks -- http://mail.pytho