Open In App

turtle.textinput() function in Python

Last Updated : 19 Dec, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support.

turtle.textinput()

This function is used to pop up a dialog window for the input of a string. Return the string input. If the dialog is canceled, return None.

Syntax :

turtle.textinput(title, prompt)

Parameters:

ArgumentsDescription
titletitle of the dialog window
prompttext mostly describing what numerical information to input

Below is the implementation of the above method with some examples :

Example 1 :

Python3
# import package
import turtle


sc = turtle.Screen()
sc.setup(400, 300)
turtle.textinput("title", "prompt")

Output :

Example 2 :

Python3
# import package
import turtle

# taking input
name = turtle.textinput("Personal Detail", "Name")

# print name input
print(name)

Output :

Deepanshu Rustagi

Article Tags :
Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy