1. 程式人生 > >python函數def

python函數def

world! 函數實現 brush div 實現 ack 參數 true 一個

#函數就是實現一個特定功能的程序塊
#下面這個函數實現了打印helloworld的功能
def print_hello():
    print(‘hello world!‘)
#這是調用方法
print_hello()
#下面的函數,實現了傳入參數的功能
#在函數中可以嵌套使用其他函數
def print_name(name):
    print_hello()
    print(‘hello‘,name)
#帶參數的調用方法
print_name(‘jack‘)

  

python函數def