qpython-android / qpython

QPython is an Android Python engine primarily designed for Python and AI learners. It offers a range of impressive features to enhance Python programming experience.
https://www.qpython.org
1.03k stars 191 forks source link

Turtle spiral drawing #194

Open Epeoplegit opened 3 years ago

Epeoplegit commented 3 years ago

Hi there.I try to run turtle spiral codes in qpython 3 but it can't run.I don't understand way.please help

NiceHexSpiral.py

import turtle colours=[‘red’,‘purple’,‘blue’,‘green’,‘yellow’,‘orange’] t=turtle.pen () turtle.bgcolor (‘black’) for x in range (360): t.pencolor (colors[x%6]) t.forward(x) t.left (59) Screenshot_2021-02-20_105757

dgodiyal commented 3 years ago

Qpython doesnot support turtle