Re: [Tutor] Microsoft Access

2007-12-27 Thread Darren Williams
Typing 'Using MS Access from Python' into Google returned a few results, one in particular - http://www.markcarter.me.uk/computing/python/ado.html Hope that helps. - Original Message - From: Jim Morcombe To: python tutor mailing list Sent: Friday, December 28, 2007 1:38 AM Su

Re: [Tutor] Take if offline

2007-09-25 Thread Darren Williams
ted debate) was about a subject entitled 'Losing the expressiveness of C' (or something similar), which I found pretty interesting. - Original Message - From: "Shawn Milochik" <[EMAIL PROTECTED]> To: "Darren Williams" <[EMAIL PROTECTED]> Sent: Tue

Re: [Tutor] Take if offline

2007-09-25 Thread Darren Williams
So by your own rules, you should have sent that to the offending user(s). - Original Message - From: "Hansen, Mike" <[EMAIL PROTECTED]> To: "python tutor" Sent: Tuesday, September 25, 2007 2:27 PM Subject: [Tutor] Take if offline > Anytime someone posts in HTML, or posts without a subj

Re: [Tutor] LosingtheexpressivenessofC'sfor-statement?/RESENDwithexample

2007-08-11 Thread Darren Williams
If that doesn't inpire you to take up programming... nothing will. >http://99-bottles-of-beer.net/ > > :) > > Alan > > ___ > Tutor maillist - Tutor@python.org > http://mail.python.org/mailman/listinfo/tutor >

Re: [Tutor] while Loop

2007-07-18 Thread Darren Williams
Oops, didn't notice the uppercase U, thanks Luke. - Original Message - From: "Luke Paireepinart" <[EMAIL PROTECTED]> To: "Darren Williams" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, July 18, 2007 3:08 PM Subject: Re: [Tutor] while Loop > Darren

Re: [Tutor] while Loop

2007-07-18 Thread Darren Williams
age - From: "Luke Paireepinart" <[EMAIL PROTECTED]> To: "Darren Williams" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, July 18, 2007 11:57 AM Subject: Re: [Tutor] while Loop > Darren Williams wrote: >> Hi all, >> I'm writing a calculator for

[Tutor] while Loop

2007-07-18 Thread Darren Williams
Hi all, I'm writing a calculator for an online game that I used to play but don't seem to be able to break out of the while loop, the program will just go over and over the loop, crashing the program and I don't know if Python is just really slow at this type of thing or i'm doing it completely

Re: [Tutor] Question from a newbie

2007-07-18 Thread Darren Williams
I have exactly the same problem using PythonWin. I know it's not saving because in the location where I am saving my program to, nothing appears, I can even search my whole computer for the file but nothing... I just use Komodo Edit for writing and saving the final versions and PythonWin for t

Re: [Tutor] CGI Calculator

2007-07-16 Thread Darren Williams
That's just printing Tokens: 1 Tokens: 2 ... Tokens: 6000 etc... Can you recommend any tutorials for me? - Original Message - From: "Eric Brunson" <[EMAIL PROTECTED]> To: "Darren Williams" <[EMAIL PROTECTED]> Cc: Sent: Monday, July 16, 2007 2:48 P

Re: [Tutor] CGI Calculator

2007-07-16 Thread Darren Williams
n" <[EMAIL PROTECTED]> To: "Darren Williams" <[EMAIL PROTECTED]> Cc: Sent: Monday, July 16, 2007 2:01 PM Subject: Re: [Tutor] CGI Calculator > Darren Williams wrote: >> Ok, now i've modified my script but am getting another error, i've >> com

Re: [Tutor] CGI Calculator

2007-07-16 Thread Darren Williams
args = ("unsupported operand type(s) for -: 'str' and 'str'",) It's confused me - it says I can't subtract a string from a string but then gives the value's of the variables (that I randomly entered into the form) at the bottom - usedPockets

[Tutor] CGI Calculator

2007-07-16 Thread Darren Williams
Hi all, I am a Python convert coming from a JavaScript background (as you can probably tell) and am currently writing my first application using Python which will be a calculator for an online game I used to play (thought it would be a decent first project) but am not sure on the syntax for ref

[Tutor] CGI error

2007-07-13 Thread Darren Williams
Hi all I have a Windows hosting account with lunarpages.com and am having a bit of trouble with CGI. I have enabled both CGI and Python in the control panel and made sure the permissions for all my CGI scripts are set to both readable and executable for all users but I keep getting the same

[Tutor] C# style multi-line textbox in Python

2007-06-02 Thread Darren Williams
Hi all, I'm completely new when it comes to Python so forgive me for asking a potentially very simple question. Can C# style multi-line textboxes for user-input be scripted in Python? Are there any other attributes that I can add to either input() or raw_input()?__