a=5000000000 # python would automatically decide that this needs more than 32 bits
print(f'Hello world! The number is {a}')
b="A string in double quotes"
c="A string in single quotes"
d="A string with a single quote (') in it"
e='A string with a double quote (") in it'
f='A string with both single (\') and double quotes (")'
print(b)
print(c)
print(d)
print(e)
print(f)
To embed this project on your website, copy the following code and paste it into your website's HTML: