+ 1
5 Antworten
+ 1
Have fun! turtle is so cool. if you havent yet, try a loop in your turtle code. like
for i in range(500):
forward(i)
right(91)
+ 1
Have you downloaded the python program, IDLE? If not, that would help a lot. Yes files could also be written in notepad and saved with the .py extension but i believe you need an interpreter to run them. So once you download IDLE, open it and then go new file and it should open up a seperate window where you write and save your programs. Then click run and run it in the interpreter. Hope this helped
+ 1
I downloded python3.7.0 from www.python.org
& Thank you☺
+ 1
the colon goes at the end of the loop statement. exactly like i showed in the last comment. and the commands that are to be looped must be indented
0
yeah I wanted to do that but I stuck in another problem! How should I end the loop?
Where should i exacly put ':'?