Write a program to output the following:
_ _
(,)_(,)
| ''|
=| @|=
---
Hint: Copying and pasting the code above into each line of the programming environment will help you ensure that you are accurately spacing out the required characters. Remember to also use double quotation marks (") in your print command, to distinguish them from any single quotation marks (') you may need to use to successfully output the image.
print(" _ _ ", "(,)_(,)", " | ''| ", "=| @|=", " --- ", sep="\n")
Comments
Leave a comment