#定義函式
def func():
print("我是乙個函式")
print("函式結束了")
#呼叫函式
fucn()
函式的引數和返回值def hello(person):
print(",你好呀!".format(person))
print("{},你看見我家aa了嗎?".format(person))
return none
p = "小v"
#呼叫函式
hello(p)
for o in
range(1
,10):
for i in
range(1
,o +1)
:print
(o * i,end=
" ")
print
()
def
jiujiu()
for o in
range(1
,10):
for i in
range(1
,o +1)
:print
(o * i,end=
" ")
print()
return
none
#呼叫函式
jiujiu(
)
引數詳解
#普通引數案例
defnormal_para
(one,two,there)
:print
(one + two)
return
none
normal_para(1,
2,3)
#輸出 3
#預設引數案例
defdefault_para
(one,two,there=
100)
:print
(ont + two)
return
none
default_para(1,
2)#輸出 3
#關鍵字引數
defkeys_para
(one,two,there)
:print
(one + two)
print
(there)
return
none
keys_para(one=
1,two=
2,there=3)
keys_para(there=
30,two=
2,one=1)
#輸出 3 3 3 30
小白學Python 之函式 二
定義乙個函式 defgetname name print 請叫我 format name return def getitem k b 0 for i in k b b i print b returnb 呼叫getname 小王 k 1,2,34,5,3,56,45,6,56,767,98 get...
小白學Python(一)
小白學python 一 一 注釋 單行注釋 多行注釋 注 在python2中為了支援中文必須寫中文注釋在第一行 coding utf 8 二 定義變數 語法 變數名 變數值 例 a 10 在第一次為變數賦值為定義變數,第一次之後就為修改變數 變數的型別 1 數字 int 整型 long 長整型 fl...
小白Python筆記(1)
雖然是工科畢業,但是很慚愧計算機語言爛出天際,最近也是很迷茫,在迷茫的時候就想著能不能從頭做一件事,然後腦闊被門擠了一樣想著來學習python,如果後面有興趣學習我就繼續堅持,如果學到後面發現實在不是這塊料,那我就一秒放棄 哈哈哈,希望結局沒辣麼慘 我的手還不夠成熟,不會自己敲 好了,廢話不多說,開...