[web2py] Re: simple loop question

2013-03-23 Thread Alex Glaros
Anthony, Can you recommend any online tutorials or videos to help someone that doesn't know object oriented programming? Hopefully something that can be related to web2py so that I would learn that response.write() is a method, not an attribute. I just started writing an app without knowing

[web2py] Re: simple loop question

2013-03-23 Thread greaneym
Hi Alex, www.programr.com has python object-oriented examples www.coursera.org has a python course in April. The mvc approach can be learned by trying the examples in web2py's on-line manual, using the welcome app that comes with the install. Trying examples yourself is a great way to

[web2py] Re: simple loop question

2013-03-22 Thread Anthony
response.write() is a method, not an attribute (even if it were an attribute, you would be overwriting it repeatedly, not appending to it). Anthony On Friday, March 22, 2013 6:51:01 PM UTC-4, Alex Glaros wrote: I'm trying to write a simple loop in default.py. What's wrong with this below?