commit f641ad28719a7bb99bcac868b572db7c107d5eaa Author: Maria Laís Florêncio de Araújo Date: Fri Nov 1 14:32:04 2024 +0000 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..aa31a66 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# trici + +import turtle + + +turtle.color("red") +turtle.shape("circle") + + +def desenho_tricir(zoom: int = 1): + + turtle.penup() + turtle.goto(zoom*40,zoom*100) + turtle.pendown() + + + turtle.goto(zoom*12,zoom*40) + turtle.goto(zoom*90,zoom*40) + turtle.goto(zoom*112,zoom*40) + turtle.goto(zoom*135,zoom*40) + turtle.goto(zoom*80,zoom*190) + turtle.goto(zoom*40,zoom*100) + turtle.circle(radius= zoom*50) + + +desenho_tricir(zoom = 2) + + +turtle.done()