My first message in Python
Example 1-1 : Hello world!
'''
Example 1-1 Hello world!
Assign the message "Hello world!" to a variable
and print it on the screen.
'''
message = "Hello world!" # message is a variable
print(message
pythonlab.hashnode.dev2 min read