Python

From vret
Revision as of 14:57, 10 August 2009 by Wouter (talk | contribs)
Jump to: navigation, search

Download

Tutorials

Documentation practice

I propose to use epydoc to generate documentation ala javadoc. This means adding text like @param and @author to the docu field in the code.

Problems

=+ VS +=

counter += 1 isn't equal to counter =+ 1 both scripts will run with out a error but one will add 1 to the counter and the other will set the counter too 1. I haven't got counter++ working.