๐ print command
๐ print command
# Example code (print command)
print("Hello world")ย # prints the string literal "Hello world"
name = "Owen" ย ย ย ย # Variable called name is assigned the string data "Owen"
print("Hello", name)ย # print command outputs the string "Hello" on the screen and then outputs the contents of the name variable