您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關function python的使用方法是什么的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
在Jupyter notebook里面新建一個python文件。
簡單地定義一個FUNCTION函數。
def function1(): print("this is function1") print("function1 is here") print("out of the function1")
然后調試function1()就可以看到該函數里面的內容。
this is function1 function1 is here
定義FUNCTION函數后,可以不斷重復使用。
FUNCTION括號里面還可以增加數字。
def function2(x): return 2*x hoo = function2(8) print(hoo)
結果如下:
16
FUNCTION括號里面可以存在兩個數字。
def function4(x, y): return x - y woo = function4(8, 5) print(woo)
結果如下:
3
FUNCTION函數可以同時定義PRINT和括號里的值。
def function5(x): print(x) print("this is function5") return 2*x tooooo = function5(8) print(tooooo)
結果如下:
16
感謝各位的閱讀!關于function python的使用方法是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。