Python自學筆記004 函式

2021-08-25 14:31:26 字數 805 閱讀 3567

def

function

(a,b):

print('this is a function.')

c=a+b

print('a+b=',c)

這裡執行之後需要我們呼叫這個函式

>>> function(3,4)

# ()這裡面表示傳入函式的引數值

this is a function.

a+b= 7

如果在呼叫時忘記了引數的位置,只記得引數的名字,可以在呼叫時如下操作:

>>> function(b=3,a=4)

this is a

function.

a+b= 7

如果指明了引數名稱和引數值,順序不再是決定因素。

a=none

deffun

(): a=20

print(a)

fun()

print(a)

輸出結果如下:

none

none

若想在區域性改變全域性變數a的值,如下:

a=none

deffun

():global a #使用global

a=20

print(a)

fun()

print(a)

輸出如下:

none

20

Python 自學筆記7 函式

1.使用函式的目的 模組化,便於處理 2.函式的定義 def function 2.函式文件 def myfirstfunction name 函式文件在函式定義的最開頭部分,此部分就是函式文件,用不記名字串表示 print i love fishc.com 函式的文件字串可以按如下方式訪問 myf...

Python學習筆記004

0042020 7 7 python的比較操作符 左邊大於右邊 左邊大於等於右邊 左邊小於右邊 左邊小於等於右邊 左邊等於右邊 左邊不等於右邊 python條件分支語法 if條件 條件為真 true 執行的操作 else 條件為 false 執行的操作 python的while迴圈語法 while條...

python筆記 004 注釋

使用用自己熟悉的語言,在程式中對某些 進行標註說明,增強程式的可讀性 這是第乙個單行注釋 print hello python 為了保證 的可讀性,後面建議先新增乙個空格,然後再編寫相應的說明文字 print hello python 輸出 hello python 這是乙個多行注釋 在多行注釋之間...