116k views
4 votes
Save backAndForth3.py or backAndForth3Update.py to the new name backAndForth4.py. Add a triangular nose in the middle of the face in the makeFace function. Like the other features of the face, make sure the position of the nose is relative to the center parameter. Make sure the nose is included in the final list of elements of the face that get returned!

User FrengoF
by
7.7k points

1 Answer

1 vote

Final answer:

To save backAndForth3.py or backAndForth3Update.py to the new name backAndForth4.py, you can use the os module in Python. To add a triangular nose in the middle of the face in the makeFace function, you can use the turtle module. To include the nose in the final list of elements of the face, you can use the append() function.

Step-by-step explanation:

To save backAndForth3.py or backAndForth3Update.py to the new name backAndForth4.py, you can use the os module in Python. First, import the os module. Then, use the os.rename() function to rename the file. For example:

import os

os.rename('backAndForth3.py', 'backAndForth4.py')

To add a triangular nose in the middle of the face in the makeFace function, you can use a shape-drawing function like turtle. First, import the turtle module. Then, use the turtle.goto() function to move the turtle to the appropriate position. Finally, use the turtle.pendown() function followed by shape-drawing commands to draw the nose. For example:

import turtle

def makeFace(center):
turtle.up()
turtle.goto(center[0], center[1] - 50)
turtle.down()
turtle.forward(50)
turtle.right(120)
turtle.forward(50)
turtle.right(120)
turtle.forward(50)

To include the nose in the final list of elements of the face that get returned, you can add the nose to the list using the append() function. For example:

def makeFace(center):
elements = []
# Other elements of the face
elements.append('nose')
return elements

User Urja Pawar
by
8.0k points