Multiple entry boxes in turtle graphics?
-
I know that turtle.textinput("title","What is your entry")
will give me a small text entry box. But how can I create multiple entry boxes in the same window? Is this possible?
-
@netrate , sorry I dont have an answer for you. But pls consider posting some code along with your question. It's not a necessity, but if you had some code posted (showing what you have done) that someone could copy paste into Pythonista you would have a better chance to get a answer. I mention this because maybe not a lot of people are not using turtle (at least on regular basis). If you had some sample code, then some who wanted to have a look at it, would not have to go looking for what imports etc to use just to get going and do a little investigation. Like help(turtle) etc.
-
If you don‘t need an input value and just want to output text, then use
write(„Hello World“)
but if you need several input values I would recommend another library „dialogs“, here you can find an example