Open In App

turtle.numinput() function in Python

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:

Arguments Description
title title of the dialog window
prompt ext mostly describing what numerical information to input
default default value
minval minimum value for input
maxval maximum value for input

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

Example 1 :




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

Output : 

Example 2 : 




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

Output : 

9897347846

 


Article Tags :