Turtle in flet #1075
Answered
by
iron3oxide
saurabhwadekar
asked this question in
Q&A
Turtle in flet
#1075
-
can we use turtle module in flet |
Beta Was this translation helpful? Give feedback.
Answered by
iron3oxide
Feb 23, 2023
Replies: 1 comment 1 reply
-
That depends on how you want to use it. Since turtle uses |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
saurabhwadekar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That depends on how you want to use it. Since turtle uses
tkinter
as the underlying GUI framework, it could at best be embedded into a flet app (don't know if that's possible at the moment) or opened in a separate window. If you want to use turtle in a non-external way from within flet, you'll have to write a turtle library for that yourself. Could be a fun project to learn flet!