如何使用IDLE编辑和运行python文件.py

时间:2015-12-09 15:34:14

标签: python-3.x python-idle

class Person:

    def __init__(self, first, last):
        self.firstname = first
        self.lastname = last

    def __str__(self):
        return self.firstname + " " + self.lastname

class Employee(Person):

    def __init__(self, first, last, staffnum):
        super().__init__(first, last)
        self.staffnumber = staffnum


x = Person("Marge", "Simpson")
y = Employee("Homer", "Simpson", "1007")

print(x)
print(y)

1 个答案:

答案 0 :(得分:1)

回答我的意思。

从图标或命令行启动IDLE。细节取决于操作系统和Python版本。

使用File =>将文件加载到IDLE编辑器窗口中打开菜单选项和打开文件对话框。如果最近编辑过文件,请使用File =>最近的文件。

根据需要进行编辑。使用Run =>运行运行模块或使用F5快捷方式。

如果从命令行启动IDLE,可以选择添加文件路径(相对或绝对)直接打开文件并跳过文件菜单。