Differences between revisions 1 and 2
Revision 1 as of 2009-11-08 13:27:27
Size: 533
Editor: pool-173-57-63-56
Comment:
Revision 2 as of 2009-11-08 17:15:02
Size: 629
Editor: PaulBoddie
Comment: Added syntax colouring.
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
{{{ {{{#!python numbers=disable
Line 12: Line 12:
{{{ {{{#!python numbers=disable
Line 19: Line 19:
{{{ {{{#!python numbers=disable
Line 29: Line 29:
{{{ {{{#!python numbers=disable

Here are some samples to help get a better idea of Python's syntax:

String formatting

name = 'Monty'
print 'Hello, %s' % name

Defining a function

def add_one(x):
    return x + 1

Defining a class with two methods

class Talker(object):
    def greet(self, name):
        print 'Hello, %s!' % name
    def farewell(self, name):
        print 'Farewell, %s!' % name

Defining a list

dynamic_languages = ['Python', 'Ruby', 'Groovy']
dynamic_languages.append('Lisp')

BeginnersGuide/Programmers/SimpleExamples (last edited 2020-03-20 17:37:52 by MarcAndreLemburg)

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