-
-
Notifications
You must be signed in to change notification settings - Fork 30.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A save function in the Turtle module #123614
Labels
Comments
|
@MarieRoald and I will submit a pull request on this shortly |
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 2, 2024
Co-authored-by: Marie Roald <roald.marie@gmail.com>
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 2, 2024
Co-authored-by: Marie Roald <roald.marie@gmail.com>
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 2, 2024
Co-authored-by: Marie Roald <roald.marie@gmail.com>
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 2, 2024
Co-authored-by: Marie Roald <roald.marie@gmail.com>
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 2, 2024
Co-authored-by: Marie Roald <roald.marie@gmail.com>
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 2, 2024
Co-authored-by: Marie Roald <roald.marie@gmail.com>
This was referenced Sep 3, 2024
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 4, 2024
Co-authored-by: Yngve Mardal Moe <yngve.m.moe@gmail.com>
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 4, 2024
Co-authored-by: Yngve Mardal Moe <yngve.m.moe@gmail.com>
yngvem
added a commit
to yngvem/cpython
that referenced
this issue
Sep 4, 2024
Co-authored-by: Yngve Mardal Moe <yngve.m.moe@gmail.com>
hauntsaninja
pushed a commit
that referenced
this issue
Sep 13, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

Feature or enhancement
Proposal:
I've used
turtle.pyquite a bit in my teaching, and a common question is how learners can save their files. Now, the turtle library only supports saving the drawings as postscript files by calling the cryptic commandturtle.getscreen().getcanvas().postscript(file=filename). Whenever a learner asks “How can I print what I made?”, I’ll have to show them that extremely scary command with method chaining -- not the best snippet to show someone who’s still struggling with functions…If we instead had a
turtle.save("filename.ps"), then I could tell the learners to use that function and an online postscript to pdf converter, which should be understandable to most learnersHas this already been discussed elsewhere?
I have already discussed this feature proposal on Discourse
Links to previous discussion of this feature:
https://discuss.python.org/t/improving-the-turtle-library/61840
Linked PRs
The text was updated successfully, but these errors were encountered: