📜  Python中的 turtle.textinput()函数

📅  最后修改于: 2022-05-13 01:55:39.241000             🧑  作者: Mango

Python中的 turtle.textinput()函数

turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。

turtle.numinput()

该函数用于弹出一个输入字符串的对话窗口。返回字符串输入。如果对话框被取消,则返回 None。

句法 :

turtle.textinput(title, prompt)

参数:

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

以下是上述方法的实现以及一些示例:

示例 1:

Python3
# import package
import turtle
 
 
sc = turtle.Screen()
sc.setup(400, 300)
turtle.textinput("title", "prompt")


Python3
# import package
import turtle
 
# taking input
name = turtle.textinput("Personal Detail", "Name")
 
# print name input
print(name)


输出 :

示例 2:

Python3

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

输出 :

Deepanshu Rustagi