Re: [Tutor] Creating To Do List Program - Question

2013-09-29 Thread Alan Gauld
On 29/09/13 21:42, Rafael Knuth wrote: iteration. I know my program is super cheesy & primitive, but I don’t care, it does what I expect it to do, Really? You wrote a program that printed out a different program to the one you ran and that's what you wanted? It doesn't do anything about creati

Re: [Tutor] Creating To Do List Program - Question

2013-09-29 Thread Alan Gauld
On 29/09/13 22:09, Joel Goldstick wrote: mysql comes with python, and you can learn the basics over a weekend using the interactive tool that comes with it. I assume you meant SQLite comes with python? MySql is a download... -- Alan G Author of the Learn to Program web site http://www.alan-

Re: [Tutor] Function definition

2013-09-29 Thread Alan Gauld
On 30/09/13 01:13, Sammy Cornet wrote: Greets!! Your help provided to me concerning function definition > was awesome Steven. Gratitude...!!! I'm not sure who's tongue is furthest into their cheek here. But please, in future show us some code and any error messages, it does make it easier to a

Re: [Tutor] Function definition

2013-09-29 Thread Sammy Cornet
Greets!! Your help provided to me concerning function definition was awesome Steven. Gratitude...!!! Sent from my iPhone On Sep 28, 2013, at 9:56, "Steven D'Aprano" wrote: > On Sat, Sep 28, 2013 at 10:19:57AM -0500, Sammy Cornet wrote: >> Hello! >> I'm using python v2.7.5 (IDLE). I'm trying t

Re: [Tutor] Creating To Do List Program - Question

2013-09-29 Thread Joel Goldstick
On Sun, Sep 29, 2013 at 6:42 PM, Walter Prins wrote: > On 29 September 2013 22:09, Joel Goldstick wrote: > >> mysql comes with python, and you can learn the basics over a weekend >> using the interactive tool that comes with it. >> > > Just a minor errata: I'm sure Joel meant to write "sqlite",

Re: [Tutor] Creating To Do List Program - Question

2013-09-29 Thread Walter Prins
On 29 September 2013 22:09, Joel Goldstick wrote: > mysql comes with python, and you can learn the basics over a weekend using > the interactive tool that comes with it. > Just a minor errata: I'm sure Joel meant to write "sqlite", not "mysql". (SQLite is indeed included with Python, the latte

Re: [Tutor] Creating To Do List Program - Question

2013-09-29 Thread Joel Goldstick
On Sun, Sep 29, 2013 at 4:42 PM, Rafael Knuth wrote: > Hej there, > > I am writing a to do list program in Python 3.0. > > Earlier this week, I shared my first iteration on the mailing list, > and the feedback was that I should learn how to create, write to and > read from a text file – which I di

Re: [Tutor] Creating To Do List Program - Question

2013-09-29 Thread Dominik George
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Rafael Knuth schrieb: >Hej there, > >I am writing a to do list program in Python 3.0. > >Earlier this week, I shared my first iteration on the mailing list, >and the feedback was that I should learn how to create, write to and >read from a text fi

[Tutor] Creating To Do List Program - Question

2013-09-29 Thread Rafael Knuth
Hej there, I am writing a to do list program in Python 3.0. Earlier this week, I shared my first iteration on the mailing list, and the feedback was that I should learn how to create, write to and read from a text file – which I did. Below please find my second iteration. I know my program is sup