Dec17th07@// Hello Python!
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.
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.