Open In App

turtle.numinput() function in Python

Last Updated : 15 Sep, 2021
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.numinput()

This function is used to pop up a dialog window for the input of a number. The number input must be in the range minval to maxval if these are given. If not, a hint is issued and the dialog remains open for correction.

Syntax :

turtle.numinput(title, prompt, default=None, minval=None, maxval=None)

Parameters:

ArgumentsDescription
titletitle of the dialog window
promptext mostly describing what numerical information to input
defaultdefault value
minvalminimum value for input
maxvalmaximum value for input

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

Example 1 :

Python3

# import package
import turtle
turtle.numinput("title","prompt")

Output : 

Example 2 : 

Python3

# import package
import turtle
 
 
# taking input
num= int(turtle.numinput("Contact Detail",
                          "Phone no.",
                          default=9999999999,
                          minval=6000000000,
                          maxval=9999999999
                          ))
print(num)

Output : 

9897347846


 



Next Article
Article Tags :
Practice Tags :

Similar Reads