Re: [Tutor] Learn Python

2009-12-11 Thread Alan Gauld
"Grigor Kolev" wrote I'm trying to learn python but I have difficulties with classes. If someone has a code that shows the basic concepts and relationships in the classes, please send it to me. Most tutorials should show that. You can try the OOP topic in mine if you like, also the Case st

Re: [Tutor] What books do you recommend?

2009-12-11 Thread Alan Gauld
"Che M" wrote Just on that topic of tutorials, have you seen www.ShowMeDo.com? I'll echo this. I found the ShowMeDo site to be an excellent source, especially for learning the more hands-on type skills like using Eclipse/PyDev etc. -- Alan Gauld Author of the Learn to Program web site ht

[Tutor] Learn Python

2009-12-11 Thread Grigor Kolev
Hi I'm trying to learn python but I have difficulties with classes. If someone has a code that shows the basic concepts and relationships in the classes, please send it to me. I will be happy if code possess very much comments -- Grigor Kolev ___ Tutor

Re: [Tutor] What books do you recommend?

2009-12-11 Thread Che M
> I won't continue to divert this thread from good books, but I will continue > to look > for more and more tutorials and will post it The more the more merrier... > Becky Just on that topic of tutorials, have you seen www.ShowMeDo.com? They have right now 516 screencast tutorials relat

[Tutor] Software Development Courses

2009-12-11 Thread Elaine Haight
Foothill College is offering two courses of interest to web application software developers: Ajax and Python. These 11-week courses are held from January through March. The Ajax class is entirely online, and the Python class meets Thursday evenings at the Middlefield campus in Palo Alto. “Applica

Re: [Tutor] typerror

2009-12-11 Thread Roshan S
On Fri, 11 Dec 2009 19:12:32 +0400, Dave Angel wrote: Roshan S wrote: class Student: print"We have a new student " def __init__(self,name='',credit=0,grade=0,quality=0): self.name=name self.credit=credit self.grade=grade self.quality=quality def

Re: [Tutor] typerror

2009-12-11 Thread Dave Angel
Roshan S wrote: class Student: print"We have a new student " def __init__(self,name='',credit=0,grade=0,quality=0): self.name=name self.credit=credit self.grade=grade self.quality=quality def inputstudent(self): self.name=raw_input("Enter stu

Re: [Tutor] typerror

2009-12-11 Thread spir
"Roshan S" dixit: > class Student: > print"We have a new student " > def __init__(self,name='',credit=0,grade=0,quality=0): > self.name=name > self.credit=credit > self.grade=grade > self.quality=quality > > > def inputstudent(self): >

Re: [Tutor] More on unit testing - tests for external data...

2009-12-11 Thread Kent Johnson
On Thu, Dec 10, 2009 at 11:19 PM, Modulok wrote: > It seems like there are a lot of people on this list interested in > getting more familiar with unit testing, but not a whole lot of > non-trivial, python-specific examples being passed around. > Case studies/tutorials anyone? Unit testing has

Re: [Tutor] What books do you recommend?

2009-12-11 Thread Jeff Johnson
Becky Mcquilling wrote: Thanks, Alan. It is fun and on many levels I welcome the challenge. I won't continue to divert this thread from good books, but I will continue to look for more and more tutorials and will post it The more the more merrier... Becky I read through all the posts t

[Tutor] typerror

2009-12-11 Thread Roshan S
class Student: print"We have a new student " def __init__(self,name='',credit=0,grade=0,quality=0): self.name=name self.credit=credit self.grade=grade self.quality=quality def inputstudent(self): self.name=raw_input("Enter student Name ")

Re: [Tutor] Still making Cribbage game, NEED HELP Please

2009-12-11 Thread Lie Ryan
On 12/10/2009 1:24 PM, Christopher schueler wrote: I am still working on my cribbage game.. if you want rules or an outline of the rules/project information, it is HERE -> http://jongarvin.com/cawthra/files/ics3u/cribbage_project..pdf

Re: [Tutor] What books do you recommend?

2009-12-11 Thread Becky Mcquilling
Thanks, Alan. It is fun and on many levels I welcome the challenge. I won't continue to divert this thread from good books, but I will continue to look for more and more tutorials and will post it The more the more merrier... Becky On Thu, Dec 10, 2009 at 2:24 PM, Alan Gauld wrote: > > "Becky