python IDLE不会运行我以前保存和重新打开的代码

时间:2011-10-14 05:05:42

标签: python

我最近开始学习python,当我关闭IDLE并保存我的工作时。 当我回到它打开空闲并打开我保存的工作并用f5运行模块测试它,模块没有产生和错误代码,甚至没有打印出我简单的打印命令。如果我使用一些命令快速输入一个新项目,它只是我之前保存的工作......

有人有什么想法吗?

我的操作系统是Windows 7家庭,它可能有助于我知道我以前安装过3.2和2.6

编辑:事实证明我的代码不会通过python在命令中运行,或者我的代码似乎没问题,但会在这里发布:

import random
import time

Coin = 100
Health = 100
PCName = ()

def displayIntro():
    print "You wake, bound to the cell wall by shackles..."

2 个答案:

答案 0 :(得分:2)

执行此模块将不会执行任何操作。您只需进行一些导入,定义一些全局变量并定义一个函数。如果你想看到打印的东西,你必须调用你的函数:

import random
import time

Coin = 100
Health = 100
PCName = ()

def displayIntro():
    print "You wake, bound to the cell wall by shackles..."

displayIntro() # when the interpreter reaches this line, a warm welcome will be printed

答案 1 :(得分:0)

你编写的代码是Python 2,而不是3.这是你应该如何调用print():

    print("You wake, bound to the cell wall by shackles...")