Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在学习 python 编程,我只是通过简单的练习。其中一个让我创建一个类,如下所示:
class MyFirstClass: Pass
这就对了。我保存了这个,然后当我尝试在 Mac 终端中使用 python3.3 导入文件并分配一个对象时:
a = MyFirstClass()
我收到语法错误。我没有正确运行程序吗?我已经在 IDLE 中执行了这个任务,但是当我在终端中使用 Python 时它似乎不起作用。
Python 区分大小写。 Pass应该是pass。
Pass
pass