Computer Science, asked by siddhiangelic579, 10 months ago

import turtle
s1=turtle.Turtle()
for cl in range (8) :
s1.forward(100)
s1.left(360/8)

what is wrong in this for python

Answers

Answered by DebjeetBanerjee
0

Answer:

you have written s1.left(360/8).

give a definite value instead of fraction

and where is the another limit for loop,

you have given only one parameter.

correct this things and i hope it will work

Similar questions