Python建立函數
Python建立函數
# -*- coding: UTF-8 -*- #Python建立函數 def fun():#單純沒有傳入也無回傳值的函數 i = 0 while i < 6: print(i) i += 1
def fun1():#單純沒有傳入,有回傳值的函數 i = 0 while i < 6: print(i) i += 1 return i;
def fun2(x=2):#有傳入,有回傳值的函數[也有預設傳入值] i = x while i < 6: print(i) i += 1 return i;
fun()#函數呼叫,函數一定要寫在呼叫之前 print(‘fun1=’,fun1()) print(‘fun2=’,fun2()) print(‘fun2(10)=’,fun2(10)) |