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.
Created on 2015年11月05日 02:00 by Anthony C, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| movies.py | Anthony C, 2015年11月05日 02:00 | |||
| Messages (2) | |||
|---|---|---|---|
| msg254078 - (view) | Author: Anthony C (Anthony C) | Date: 2015年11月05日 02:00 | |
Making this simple code to mess with turtle well it seems like after awhile I have encountered the window = turtle.Screen() doesnt seem to even open it up only the shell window and does nothing afterwards. Its quite annoying especially trying to practice with it and it doesnt work.
import turtle
def draw_square(some_turtle) :
for i in range(1,5) :
some_turtle.forward(100)
some_turtle.right(90)
def draw_art() :
window = turtle.Screen()
window.bgcolor("red")
brad = turtle.Turtle()
brad.shape("turtle")
brad.color("blue")
brad.speed(2)
for i in range (1,4) :
draw_square(brad)
brad.right(10)
window.exitonclick()
|
|||
| msg254119 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2015年11月05日 16:52 | |
This is not a place to get help with turtle programming, but rather a place to report bugs. We know turtle works, we have tests :). For help your best bet would be the python-list mailing list, or perhaps python-tutor. Probably the latter: I note that your program doesn't actually do anything, it just defines some functions. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:23 | admin | set | github: 69738 |
| 2015年11月05日 16:52:11 | r.david.murray | set | status: open -> closed nosy: + r.david.murray messages: + msg254119 resolution: not a bug stage: resolved |
| 2015年11月05日 02:00:19 | Anthony C | create | |