Python中pass是什么?

pass是一个在Python中不会被执行的语句。在复杂语句中,如果一个地方需要暂时被留白,它常常被用于占位符。

 

class Student(object):
    def __init__(self,name,age):
        self.name=name;
        self.age=age;
    def speak(self):
        pass

 

转载于:https://www.cnblogs.com/apollo1616/articles/9785102.html

你可能感兴趣的:(python)