Re: [Tutor] Python on USB device

2005-03-11 Thread Ralfas Jegorovas
I have just downloaded the package and from what I've seen of it, it looks excellent. As a bonus it is quite well documented (always a good thing :-) ). I'll spend more time playing with it tommorow hopefully. Thanks for your help. All the best, Ralf _

Re: [Tutor] Python on USB device

2005-03-11 Thread Brian van den Broek
Ralfas Jegorovas said unto the world upon 2005-03-11 20:33: Hi everyone, I would like to know if it is possible to install python on a usb device and run it. I found some references to this topic in the archives but I didnt find the information conclusive. Any information would be appreciated.

Re: [Tutor] help me please!!!

2005-03-11 Thread Brian van den Broek
[EMAIL PROTECTED] said unto the world upon 2005-03-11 20:21: ok i just restarted my pc and it works now thank you ..ok when i go to the start menu then go to all programs then to python 2.4 it gives me five things ok it says IDLE (python GUI) Module Docs python (command line) python manuals unins

[Tutor] Python on USB device

2005-03-11 Thread Ralfas Jegorovas
Hi everyone, I would like to know if it is possible to install python on a usb device and run it. I found some references to this topic in the archives but I didnt find the information conclusive. Any information would be appreciated. Ralf ___ Tutor ma

Re: [Tutor] help me please!!!

2005-03-11 Thread Brian van den Broek
[EMAIL PROTECTED] said unto the world upon 2005-03-11 19:00: Ok some thing is messed up.. when i try to open the python shell i get a error meesage saying socket error:connection refused and the head line at the top says IDLE subprocess error.. and then the python shell pops up with a e

[Tutor] help me please!!!

2005-03-11 Thread Jeff420harris00
Ok some thing is messed up.. when i try to open the python shell i get a error meesage saying socket error:connection refused and the head line at the top says IDLE subprocess error.. and then the python shell pops up with a error message on it saying. IDLE's subprocess didn't make con

Re: [Tutor] Please help me get started on how to program useing python 2.4!!! (fwd)

2005-03-11 Thread Danny Yoo
[Forwarding to [EMAIL PROTECTED] Sorry about the repetition.] -- Forwarded message -- Date: Fri, 11 Mar 2005 17:18:03 EST From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [Tutor] Please help me get started on how to program useing python 2.4!!! ok heres where i got

Re: [Tutor] Please help me get started on how to program useing python 2.4!!! (fwd)

2005-03-11 Thread Danny Yoo
[Forwarding to [EMAIL PROTECTED] Please use your email client's "Reply-to-all" feature whenever you're replying to messages on the tutor list. Otherwise, no one else gets to see your questions.] -- Forwarded message -- Date: Fri, 11 Mar 2005 17:07:15 EST From: [EMAIL PROTECTED]

Re: [Tutor] Installing Python....Getting Started (fwd)

2005-03-11 Thread Danny Yoo
[Forwarding to [EMAIL PROTECTED] When you are replying to a message, please use your email's "Reply-to-All" feature so that your message reaches both me and the mailing list.] -- Forwarded message -- Date: Fri, 11 Mar 2005 22:38:55 +0100 From: Jan EkstrÃm <[EMAIL PROTECTED]> To:

Re: [Tutor] Please help me get started on how to program useing python 2.4!!!

2005-03-11 Thread Brian van den Broek
Danny Yoo said unto the world upon 2005-03-11 16:07: On Fri, 11 Mar 2005 [EMAIL PROTECTED] wrote: When we ask: "Is the number 'one' greater than the number 'two'?", Python is telling us "No!" by giving us back the value 'False'. Whenever we ask Python a question that's a yes/no sort of thing, Pyt

Re: [Tutor] Installing Python

2005-03-11 Thread Danny Yoo
On Fri, 11 Mar 2005, [iso-8859-1] Jan Ekström wrote: > I have tried to install Python 2.4 on two pc-s and get this error when I > follow the instruction and type python at the comand window or Idle > window. I am running Windows xp home edition. What am I doing wrong? >> > Here is the error. > I

Re: [Tutor] Please help me get started on how to program useing python 2.4!!!

2005-03-11 Thread Danny Yoo
On Fri, 11 Mar 2005 [EMAIL PROTECTED] wrote: > OK i have learned that on the python shell if you put, print "some > message" the output is, some message Hi Jeff, Ok, yes, that looks right. Let me do that myself: ### >>> print "hello world" hello world ### (The '>>>' thing is what the Pytho

[Tutor] Installing Python

2005-03-11 Thread Jan Ekström
I have tried to install Python 2.4 on two pc-s and get this error when I follow the instruction and type python at the comand window or Idle window. I am running Windows  xp home edition. What am I doing wrong? I have also ask for explanation on Googles and got the answer that there is such a

RE: [Tutor] and once i have learned how to program ?

2005-03-11 Thread Kooser, Ara S
Title: RE: [Tutor] and once i have learned how to program ? http://starship.python.net/crew/theller/py2exe/ This website is a good starting point. Ara -Original Message- From: [EMAIL PROTECTED] on behalf of [EMAIL PROTECTED] Sent: Fri 3/11/2005 12:26 PM To: tutor@python.org Subjec

Re: [Tutor] and once i have learned how to program ?

2005-03-11 Thread Paul Tremblay
On Fri, Mar 11, 2005 at 02:26:48PM -0500, [EMAIL PROTECTED] wrote: > From: [EMAIL PROTECTED] > Date: Fri, 11 Mar 2005 14:26:48 EST > To: tutor@python.org > Subject: [Tutor] and once i have learned how to program ? > > Once i have learned how to program what can i do with the programs can they > r

[Tutor] and once i have learned how to program ?

2005-03-11 Thread Jeff420harris00
Once i have learned how to program what can i do with the programs can they run out side of the python shell like on My OS or a game? My OS is window XP home ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] Please help me get started on how to program useing python 2.4!!!

2005-03-11 Thread Jeff420harris00
OK i have learned that on the python shell if you put, print "some message" the output is, some message   and if you put, type> "some message" the output is, true    and if you put, type< "some message" the output is, false   And if you put, for, in, or and it turns orange like print dose but I don

Re: [Tutor] Can you get python to force a number to remain 32 bit instead of autoconverting to type 'long'?

2005-03-11 Thread Kent Johnson
R. Alan Monroe wrote: I tried to convert this pseudocode function IntNoise(32-bit integer: x) x = (x<<13) ^ x; return ( 1.0 - ( (x * (x * x * 15731 + 789221) + 1376312589) & 7fff) / 1073741824.0); end IntNoise function from this website http://freespace.virgin.net/hugo.elias/models

Re: [Tutor] cyclically rotate a seq

2005-03-11 Thread Kent Johnson
kevin parks wrote: Hi folks, I am trying to cyclically rotate a seq until it reached the beginning stage again. I would like to be able to rotate in both directions and using any arbitrary interval. I think the code is correct but I have a few suggestions below. #!/usr/bin/env python import sys i