Respuesta :

Using the knowledge of computational language in python it is possible to write a code that write a function that draws a frog  and call the function to be sure it works.

Writting the code:

def DrawFrog():#Function to draw the frog

#the four print lines results in shape of the frog

print("  ")

print(" (----) ")

print(" ( >--< )")

print(" ^^ __ ^^")

return None #retruns nothing

for i in range(4):#for loop

print("Frog",i+1)

DrawFrog() #calling the function

print() #to go to next line

See more about python at brainly.com/question/18502436

#SPJ1

Ver imagen lhmarianateixeira