0

所以我一直在学习 Python the Hard Way,目前正在练习 3

按照我的理解,当我输入像print "I will now count my chickens:"and之类的语句时print "Hens", 25 + 30 / 6,我应该在终端中看到等效的输出"I will now count my chickens and Hens 30 "

这似乎并非如此,任何人都知道为什么以及如何解决这个问题?

4

1 回答 1

0

使用 shebang 标头 ie#!/usr/bin/python3 或任何对您来说等效的路径。这告诉 shell 在哪里使用你的解释器来处理这个脚本。

然后,保存文本文件。

通过使用使其从终端可执行(因为您在 Mac 上)chmod +x filename.py

然后,只需从终端执行文件./filename.py,您应该会看到所需的输出。

于 2012-12-18T12:56:56.183 回答