Python 图形 'int' 对象没有属性 'clone'
Python graphics 'int' object has no attribute 'clone'
from graphics import *
textEntry = Entry(150, 15)
我正在尝试学习 Python 图形 (Zelle),并且我正在尝试弄清楚如何创建一个文本输入框,用户可以在其中输入文本,然后我可以用来确定一些事情,例如,询问用户他们想要图形的尺寸 window。
它告诉我
AttributeError: 'int' object has no attribute 'clone'
几乎没有 python 图形背景我不知道这意味着什么,谁能帮我解决这个问题并告诉我如何在图形中制作文本输入框之类的东西来获取输入来自用户?
Entry
以中心点和宽度作为参数,你的第一个参数不是点,它是一个整数。
Entry
不接受 int
的 2 个参数,而是 Point
和 int
.
Entry(centerPoint, width)
Constructs an Entry having the given center point and width. The width
is specified in number of characters of text that can be displayed.
类似于:
Entry(Point(233, 200),10)
from graphics import *
textEntry = Entry(150, 15)
我正在尝试学习 Python 图形 (Zelle),并且我正在尝试弄清楚如何创建一个文本输入框,用户可以在其中输入文本,然后我可以用来确定一些事情,例如,询问用户他们想要图形的尺寸 window。
它告诉我
AttributeError: 'int' object has no attribute 'clone'
几乎没有 python 图形背景我不知道这意味着什么,谁能帮我解决这个问题并告诉我如何在图形中制作文本输入框之类的东西来获取输入来自用户?
Entry
以中心点和宽度作为参数,你的第一个参数不是点,它是一个整数。
Entry
不接受 int
的 2 个参数,而是 Point
和 int
.
Entry(centerPoint, width)
Constructs an Entry having the given center point and width. The width is specified in number of characters of text that can be displayed.
类似于:
Entry(Point(233, 200),10)