Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么我在错误的文本索引“1”中出现错误
text.insert(1, "Hello world")
但
text.insert(1.0, "Hello world")
工作正常?
该函数不将整数作为输入,而是将双精度值。这就是为什么它适用于 1.0 但不适用于 1。您也可以使用字符串“insert”而不是 1.0,它们都是相同的。