What is missing in this code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

What is missing in this code

from turtle import * import colorsys bgcolor('black') speed(0) pensize(3) hue = 0.0 for i in range(300): color = colorsys.hsv_to_rgb(hue,1,1) pencolor(color) hue += 0.005 right(i) circle(50,i) forward(i) left(91) done() https://code.sololearn.com/W80RBjBC5L27/?ref=app

18th Dec 2022, 1:22 AM
Jeremy John
Jeremy John - avatar
3 Answers
+ 1
What should it do? What do the pasted and the linked codes have to do with each other?
18th Dec 2022, 1:57 AM
Emerson Prado
Emerson Prado - avatar
0
My question is about the codeline number 9
19th Dec 2022, 1:43 AM
Jeremy John
Jeremy John - avatar
0
Of which code? The pasted or the linked? Pls review the question and try to make it clear. I can't look for something missing in a code which purpose I don't know.
19th Dec 2022, 2:56 AM
Emerson Prado
Emerson Prado - avatar