[Tutor] How can I see properly my korean.

2007-05-30 Thread Young-gyu Park
I input the data which is from the database into array. and then I print out the array to the file but the letter I can not figure out. fileHandle = open ( '/var/chroot/www/htdocs/django/js/model.js', 'w' ) fileHandle.write( codecs.BOM_UTF8 ) print >> fileHandle, 'var

Re: [Tutor] Web-based Python Training

2007-05-30 Thread Alan Gauld
"Linda Landry" <[EMAIL PROTECTED]> wrote > I work as a Learning & Development Director in a mid-size technology > company outside of Boston, Massachusetts. Our engineers are looking > for > either a web-based Python course, or an online instructor-led Python > course. They already work with and

[Tutor] Web-based Python Training

2007-05-30 Thread Linda Landry
Hello, I work as a Learning & Development Director in a mid-size technology company outside of Boston, Massachusetts. Our engineers are looking for either a web-based Python course, or an online instructor-led Python course. They already work with and know other programming languages. Do you

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Alan Gauld
Hi Adam > flaw in my loop. It is not infinite. In fact you don't have a loop, your program is really just a simple sequence. #Welcome screen: def welcome(): print "Welcome to the Area Calculation Program." print welcome() AG:Since you only call this once there is no point in putting A

Re: [Tutor] leave tutorial

2007-05-30 Thread Grant Hagstrom
Nobody leaves the tutorial. http://mail.python.org/mailman/listinfo/tutor (at the bottom of the page) On 5/30/07, Kriti Satija <[EMAIL PROTECTED]> wrote: i want to leave the tutorial Looking for people who are YOUR TYPE? Find them at in.groups.yahoo.com

Re: [Tutor] python exercises

2007-05-30 Thread wesley chun
> Anyone know where I can get some python excercises, like > labs/someone's old homework assignments? I'm learning python without > any prior experience in programming except for fundamental bash > scripting and a lot of the terms and functionality doesn't make sense > to me. michael, i put a *l

Re: [Tutor] leave tutorial

2007-05-30 Thread Tom Tucker
http://mail.python.org/mailman/listinfo/tutor On 5/30/07, Kriti Satija <[EMAIL PROTECTED]> wrote: i want to leave the tutorial Looking for people who are YOUR TYPE? Find them at in.groups.yahoo.com ___ Tutor maillist - Tutor@python.org http

[Tutor] leave tutorial

2007-05-30 Thread Kriti Satija
i want to leave the tutorial Looking for people who are YOUR TYPE? Find them at in.groups.yahoo.com ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] python exercises

2007-05-30 Thread Grant Hagstrom
the daniweb forum has a beginners project sticky: http://www.daniweb.com/techtalkforums/thread32007.html On 5/30/07, Mike Hansen <[EMAIL PROTECTED]> wrote: > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Michael Revelle > > Anyone know where I ca

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Adam Urbas
Once again this is my latest version. I know of several problems, such as the previously posted infinite looping problem. Also, if sends you to the wrong place sometimes. Ex: a second ago, I pressed 4 to exit (which does not work either) and it took me to triangle. I'm not sure how to end the

Re: [Tutor] monitor other running applications with Py

2007-05-30 Thread Che M
Thanks for the pointers, Alan. It seems perhaps a bit beyond my abilities for now, but something to keep in mind for the future if I get that far. And yes, the legal aspects are worth noting, though rest assured my wish for such a thing is for self-monitoring rather than other-monitoring, thou

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Adam Urbas
Ok I forgot to put some things on the previous one. I discovered a flaw in my loop. It is not infinite. If you select circle, radius, enter the radius, circle, radius, enter the radius, then the program stops. I want it to be able to keep going as many times as needed, infinitely. So that the

[Tutor] problem with mmap

2007-05-30 Thread Ertl, John C CIV 63134
All, I am trying to work an example that I found at http://bitworking.org/news/132/REST-Tips-URI-space-is-infinite When I try the code below I get an error and I am not able to figure it out. Thanks for any and all help. I have two png and a text file (sortzip.txt) in the same dir as this

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Adam Urbas
I think I may have figured it out. I just switched some things around. On 5/30/07, Adam Urbas <[EMAIL PROTECTED]> wrote: I can't seem to get the type with the parameters to work. I can get def answer(): to work, but not def answer(my_first_parameter,my_second_parameter):. I'm not too concerne

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Adam Urbas
I can't seem to get the type with the parameters to work. I can get def answer(): to work, but not def answer(my_first_parameter,my_second_parameter):. I'm not too concerned, as I haven't yet needed to use that. But, when I use the parameter type, it runs without error messages, but doesn't disp

Re: [Tutor] python exercises

2007-05-30 Thread Mike Hansen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Michael Revelle > > Anyone know where I can get some python excercises, like > labs/someone's old homework assignments? There are some ideas at http://effbot.org/pyfaq/tutor-im-learning-python-what-

[Tutor] python exercises

2007-05-30 Thread Michael Revelle
Anyone know where I can get some python excercises, like labs/someone's old homework assignments? I'm learning python without any prior experience in programming except for fundamental bash scripting and a lot of the terms and functionality doesn't make sense to me. I'm using Python Programming for

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Brian van den Broek
Adam Urbas said unto the world upon 05/30/2007 11:01 AM: > I can't exactly show you the error message anymore, because the program is > now screwed up in so many ways that I can't even get it to do the things it > used to. > > It says things like ERROR: Inconsistent indentation detected! > 1) Your

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Adam Urbas
Ahahahahaha... I have figured these out beyond comprehension and power. Wahhaha. It feels good to get something to work correctly. Thanks much Andre. I don't quite understand the putting of things inside the parentheses, but I've discovered that I don't really need to, because def text(): works

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Adam Urbas
I can't exactly show you the error message anymore, because the program is now screwed up in so many ways that I can't even get it to do the things it used to. It says things like ERROR: Inconsistent indentation detected! 1) Your indentation is outright incorrect (easy to fix), OR 2) Your indenta

Re: [Tutor] [Fwd: Re: trouble with "if"]

2007-05-30 Thread Andre Engels
2007/5/30, Brian van den Broek <[EMAIL PROTECTED]>: > Another fwd, folks. > > Brian vdB > > Original Message > Subject: Re: [Tutor] trouble with "if" > Date: Tue, 29 May 2007 23:28:46 -0500 > From: Adam Urbas <[EMAIL PROTECTED]> > To: Brian van den Broek <[EMAIL PROTECTED]> > Refe