我知道这一定是一个超级基本的问题,但是,我尝试在整个 SO 中找到一个简单的答案,但找不到。
所以我的问题是:如何从命令行执行 python 脚本,以便我可以看到打印语句。
例如,假设我有文件 test.py:
def hello():
print "hello"
如果我进入解释器,导入 test.py,然后调用 test.hello(),一切正常。但是,我希望能够运行
python test.py
从命令行并让它打印“你好”到终端。
我该怎么做呢?
谢谢!
更新:是的,对不起,我的脚本实际上更像这样:
def main():
hello()
def hello():
print "hello"
我还需要调用 main(),还是自动调用它?