well, coding for a web app kind of **needs** different standards than coding a console program. Web2py itself is based on the MVC pattern, so it adds another layer of "different standards" patterns. It may sound overcomplicated comparing web2py to an ultra-basic console program like that, but you can do a lot more of things and be more productive once you grasp the general steps required.
Did you see by any chance the introduction chapter on the book (http://web2py.com/books/default/chapter/29/01#Model-View-Controller) ? PS: Rewriting the program as a two pages form is kinda simple once you get how the web works, but if you don't know a single thing about, e.g., html, even if the code is really simple you'll get lost anyway. On Friday, March 1, 2013 4:10:20 AM UTC+1, Nicholas Brajkovic wrote: > > I've begun learning python from an ebook called "RealPython" > and created my first app: > > > " > > def question(x): > x = raw_input("What do you want? ") > z = raw_input("Why do you want it? ") > z = z.replace("my", "your") > z = z.replace("I", "you") > print "So you want", x, z > print " " > a = raw_input("and why do you want that? ") > a = a.replace("because I want", "") > print " " > print "so you want",a > print " " > b = raw_input("And why do you want that? ") > print " " > print b, "- that's what's purposeful to you " > > " > > > which can be called with: > question("x") > > Now I really like the RealPython book because the author explains it to me > and I 'just get it' but when it comes to reading the web2py manual.. I > just don't get it > for example why does everything always get defined with a return dict() > after it.. anyways > If anyone could please help me grasp how to convert the above Idle app > into a web2py app > it would be greatly appreciated. > > I would also be willing to throw in $30 AUD and chat over skype if someone > is willing to guide me > into developing a better understanding. > > > > Kind regards, > > Nicholas > -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

