Python Drawing :)

Me and my classmate Elly worked on a project in python.We had to draw a picture while coding it. Elly and I thought it would look cool if we did a city. So we separated and started to work on a half of it each. Elly did the city and I did moon/sun and the sky. It was no so fun to do for me. I really don't like to code. It stresses me out a lot because i can't tell what I did wrong because it does not tell me unlike someone that is a person would. Even though i do not like to code I got it done and it was fun.

import turtleigor = turtle.Turtle()turtle.bgcolor('blue')citycolor=('black')mooncolor=('yellow')igor.width(8) # Zaira put your code hereigor.begin_fill()igor.color(mooncolor)igor.circle(125)igor.end_fill()# Elly put your code hereigor.penup()igor.color(citycolor)igor.goto(-240,-140)igor.pendown()igor.begin_fill()igor.goto(-160,-140)igor.goto(-170,20)igor.goto(-110,20)igor.goto(-110,-140)igor.goto(-80,-140)igor.goto(-90,60)igor.goto(-30,60)igor.goto(-30,-140)igor.goto(10,-140)igor.goto(10,20)igor.goto(70,20)igor.goto(70,-140)igor.goto(110,-140)igor.goto(110,140)igor.goto(170,140)igor.goto(170,-140)igor.goto(210,-140)igor.goto(210,-160)igor.goto(-240,-160)igor.goto(-240,-140)igor.end_fill()