阅读量:133

在python中书写空函数的两种方法
1.使用def语句创建
def fun():
Pass
2.使用while语句创建
mutex = True
while (mutex == True) :
Pass

在python中书写空函数的两种方法
1.使用def语句创建
def fun():
Pass
2.使用while语句创建
mutex = True
while (mutex == True) :
Pass