PythonTurtle / PythonTurtle

A learning environment for Python suited for beginners and children, inspired by Logo.

Home Page:http://pythonturtle.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

left and right API's does not work for non-integers

umangparekh opened this issue · comments

t.left(30/9) does not produce accurate results and divides the 30 degrees into 10 parts as opposed to the expected 9 parts.

Thanks for spamming us. You are awesome.

If this was meant as a screenshot upload it to GitHub directly. Otherwise it will be deleted (as untrusted) again.

@umangparekh You need to use 30/9.0 because it's Python 2.

@cool-RR Thanks! (feeling silly)