[Tutor] python project books/webs from scratch? and python OOP

2007-05-15 Thread Jesus Rodriguez
Hi! I have good python knowledge but I don't know how to face a project.Yes, i can do some small projects, but i'm scared of big projectsI don't know how to start!! Then, I'm looking for a book or web with projects, like console text games or console programs explained from scratch to finish

Re: [Tutor] Rock, Paper, Scissors

2006-08-12 Thread Jesus Rodriguez
Hi, i used a list with R, P, S like:rps = ["Rock", "Paper", "Scissors"]random.shuffle(rps)computerObject = rps[0]Then, the computer pick a random object and i compare my object with computer's object. ;)2006/8/11, wesley chun <[EMAIL PROTECTED]>: > This looks like a fun project to work on.  From> r