📜  Python中如何写一个空函数——pass语句?

📅  最后修改于: 2022-05-13 01:55:32.958000             🧑  作者: Mango

Python中如何写一个空函数——pass语句?

在 C/C++ 和Java中,我们可以编写如下的空函数

// An empty function in C/C++/Java
void fun() {  }

在Python中,如果我们在Python中编写类似以下的内容,则会产生编译器错误。

# Incorrect empty function in Python
def fun(): 

输出 :

IndentationError: expected an indented block

在Python中,要编写空函数,我们使用pass语句。 pass 是Python中的一个特殊语句,它什么也不做。它仅用作虚拟语句。

# Correct way of writing empty function 
# in Python
def fun(): 
    pass

我们也可以使用 pass in empty while 语句。

# Empty loop in Python
mutex = True
while (mutex == True) :
    pass

我们可以在空 if else 语句中使用 pass。

# Empty in if/else in Python
mutex = True
if (mutex == True) :
    pass
else :
    print("False")