#๐Ÿ”’ Check the code review and tell me if the artwork looks good

10 messages ยท Page 1 of 1 (latest)

clear fiberBOT
#

@feral gust

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

feral gust
#

ok

#

from turtle import *


screen = Screen()
screen.bgcolor("red")

turtle = Turtle()


def cool_circle():
    radius = min(screen.window_width(), screen.window_height()) // 2 - 50

    color("white")

    penup()
    goto(0, -radius)
    pendown()

    # Draw a circle 
    begin_fill()
    circle(radius)
    end_fill()

    # Hide the turtle
    hideturtle()




    
    
def main(pen_size: int = 15):
    
    turtle.pensize(pen_size)
    turtle.right(45)
    turtle.forward(100)
    turtle.right(90)
    turtle.forward(100)
    
    # reset
    turtle.penup()
    turtle.goto(0, 0)
    turtle.pendown()
    
    turtle.right(90)
    turtle.forward(100)
    turtle.right(90)
    turtle.forward(100)
    
    # reset
    turtle.penup()
    turtle.goto(0, 0)
    turtle.pendown()
    
    
    turtle.backward(100)
    
    turtle.forward(200)
    turtle.right(90)
    turtle.forward(100)
    
    # reset
    turtle.penup()
    turtle.goto(0, 0)
    turtle.pendown()
    
    turtle.right(90)
    turtle.forward(100)
    turtle.right(90)
    turtle.forward(100)


    screen.exitonclick()


if __name__ == '__main__':
    
    cool_circle()
    main()```
#

run it and tell me if it's good

heavy marsh
#

!ban 1136410455204696175 Spreading Nazi imagery

clear fiberBOT
#

:warning: The owner of this post is no longer in the server.

#

:incoming_envelope: :ok_hand: applied ban to @feral gust permanently.

heavy marsh
#

!close

clear fiberBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.