ACORN

Printing

print "Hello world!"
print "I'm learning python"
print 'you can use \' or " for strings, like \'Hello\' or "Hello".'

Output:

Hello world!
I'm learning python
you can use ' or " for strings, like 'Hello' or "Hello".

String Operations

print "You" + "can" + "add" + "strings" + "together"
print "Don't " + "forget " + "spaces (if you want them)"
print "You can multiply strings " + "over and "*10

Output:

Youcanaddstringstogether
Don't forget spaces (if you want them)
You can multiply strings over and over and over and over and over and over and over and over and over and over and