This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Windows 10, turtle left right not working
Type: behavior Stage:
Components: Windows Versions: Python 3.10
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: gregorlingl, paul.moore, steve.dower, terry.reedy, tim.golden, willingc, wizprokidz, zach.ware
Priority: normal Keywords:

Created on 2022-01-24 14:53 by wizprokidz, last changed 2022-04-11 14:59 by admin.

Files
File name Uploaded Description Edit
spaceAndShip.py wizprokidz, 2022-01-24 14:53
Messages (2)
msg411476 - (view) Author: wizprokidz (wizprokidz) Date: 2022-01-24 14:53
The image of rocket does NOT rotate (on windows 10, python 3.10.2) as it rotates here:
https://trinket.io/embed/python/8eb5179d7f

turtle.forward() and turtle.backward() are working to move the object sideways.
msg412041 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2022-01-28 22:55
When posting code for a bug report, here or anywhere else, please use the minimal code needed to demonstrate the issue.  That includes using default arg values.  And do not use non-essential files that responders will not have.

Anyway, with default background, turtle, and color, on my Win 10 3.10.2 64 bit install, your code works fine.  Up and down arrows move turtle forward and back; right and left turn the turtle.  The difference from the web site, likely running on *nix, is that I have to press keys multiple times instead of holding them down.  

I have no idea what the difference might be from your Win 10 system.
History
Date User Action Args
2022-04-11 14:59:55adminsetgithub: 90659
2022-01-28 22:55:14terry.reedysetnosy: + terry.reedy
messages: + msg412041
2022-01-24 14:53:53wizprokidzcreate