Zeichne einen Kreis in Python Turtle

from turtle import *
import turtle as tur
  
tur.circle(90)
Poised Porpoise