π 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