Run the cell below to print your very first python output!
print('Hello World!')
We can also assign our message to a variable named 'message' and print that!
message = 'Hello World!' print(message)
Congratulations! You've just printed your first output in Python. Now, it may be a bit of an assumption to assume there is only one world out there. Below, we've copied the previous cell. Change the message to 'Hello Worlds?' and print it.
message = 'Hello World!' print(message)
assert message == 'Hello Worlds?', "Did you forget to say say hello worlds?"