在python中書寫空函數的兩種方法
1.使用def語句創建
def fun(): Pass
def fun():
Pass
2.使用while語句創建
mutex = Truewhile (mutex == True) :Pass
mutex = True
while (mutex == True) :