Python Basic String Operations. Strings are bits of text. They can be defined as anything between quotes:

astring = "Hello world!"
astring2 = 'Hello world!'
print(astring)
print(astring2)

Trinket.io on-line Python compiler