193k views
4 votes
1.3 Code Practice: Question 3. On edhesieve.

Write a program to output the following:
^ ^
( o o )
v
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.
Using ¨print¨

User Iguanaman
by
6.1k points

1 Answer

3 votes

Answer:

I'll answer this question using Python

print(" ^ ^")

print("( o o )")

print(" v")

Explanation:

To answer this question, you have to follow the hint as it is in the question

The hint says you should copy each line into a print statement and that's exactly what I did when answering this question;

In other words;

^ ^ becomes print(" ^ ^")

( o o ) becomes print("( o o )")

v becomes print(" v")

User Nweiler
by
5.9k points