0

我正在将我在 3 上编写的 python 脚本移植到 2.6,我遇到了错误,我找不到等效的导入。

import win32com.client
from Tkinter import FileDialog

如何解决这些问题?

使用 Python 2.6.5

Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32 输入“copyright”、“credits”或“license()”以获取更多信息。

****************************************************************
Personal firewall software may warn about the connection IDLE
makes to its subprocess using this computer's internal loopback
interface.  This connection is not visible on any external
interface and no data is sent to or received from the Internet.
****************************************************************

IDLE 2.6.5 ==== 没有子进程 ====

感谢您

4

1 回答 1

0

win32com 模块不包含在 Python 中,您需要安装它。tk 文件对话框位于 tkFileDialog 中。

另请参阅本书中的重组和重命名章节

于 2013-04-12T05:46:09.133 回答