Differences between revisions 1 and 2
Revision 1 as of 2005-09-16 07:32:45
Size: 638
Editor: staselog
Comment: Stub
Revision 2 as of 2005-09-16 07:38:31
Size: 1077
Editor: staselog
Comment: Initial rev
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
 * Learn to use WikiFormat => HelpOnFormatting. It allows for more consistent page styles  * Learn to use wiki format => HelpOnFormatting. It allows for more consistent page styles
 * Take advantage of this wiki's ability to markup Python language - it is easier to read
   than simple, plain monotype font. An example:
Line 11: Line 13:
{{{
#!python
from hello import world

def say_hello():
    """Just say hello :)"""
    what = world()
    message = what.greet() # no, there's no module named "hello"
                            # in Python stdlib - at least not yet :)
    return message

### main
say_hello()
}}}

(when there's no content, it's better to put something in and let others correct it, no?)

Currently there are only few guidelines for creating a page inside Python Wiki:

  • Please structure long pages to sections (learn to use '== headings ==')
  • If you have source code included, run it yourself to test for at least simple errors
  • Avoid duplicating information when not necessary, and respect copyrights. If you are unsure,
    • at least credit the source, so that others can fix things if needed
  • Learn to use wiki format => HelpOnFormatting. It allows for more consistent page styles

  • Take advantage of this wiki's ability to markup Python language - it is easier to read
    • than simple, plain monotype font. An example:

   1 from hello import world
   2 
   3 def say_hello():
   4     """Just say hello :)"""
   5     what = world()
   6     message = what.greet()  # no, there's no module named "hello" 
   7                             # in Python stdlib - at least not yet :)
   8     return message
   9 
  10 ### main
  11 say_hello()

Yeah, this is a stub only...

WikiGuidelines (last edited 2013-11-14 18:29:01 by PaulBoddie)

Unable to edit the page? See the FrontPage for instructions.