How to print simple string

PHOTO EMBED

Tue Mar 31 2020 11:27:37 GMT+0000 (Coordinated Universal Time)

Saved by @amnacannon #python #python #printfunction #strings

#use print command
1.print (“Mary had a little lamb.”)
2.print (“I am 19 years old.”)
content_copyCOPY

The print() function prints the specified message to the screen, or other standard output device. The message can be a string, or any other object, the object will be converted into a string before written to the screen.