Differences between revisions 1 and 13 (spanning 12 versions)
Revision 1 as of 2009-11-08 13:27:27
Size: 533
Editor: pool-173-57-63-56
Comment:
Revision 13 as of 2013-08-29 06:18:28
Size: 164
Editor: VincentRe
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
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')
}}}
I am Vincent from Forse. I love to play Air horn.<<BR>>
<<BR>>
Other hobbies are Equestrianism.<<BR>>
<<BR>>
my page - [[http://seoenergy.de|backlink aufbau]]

I am Vincent from Forse. I love to play Air horn.

Other hobbies are Equestrianism.

my page - backlink aufbau

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

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