game.py
Saturday, December 22nd, 2007My first own functional python script is ready. It’s a simple game.
If you have pointers how to make it better, please do write em. I’m eager to learn.
(more…)
My first own functional python script is ready. It’s a simple game.
If you have pointers how to make it better, please do write em. I’m eager to learn.
(more…)
number = 5
print number
number = number + 1
print number
multiline = '''This is the first line.
And this is the second.
'''
print multiline
Yay! Baby steps, I know, but gotta start from somewhere.