def在python中表示什麼
Python使用def開始函式定義,緊接著是函式名,括號內部為函式的引數,內部為函式的 具體功能實現程式碼,如果想要函式有返回值, 在expressions中的邏輯程式碼中用return返回。
基本使用
def function_name(parameters): expressions
例項
1 def function(): 2 print('This is a function') 3 a = 1+2 4 print(a)
上面我們定義了一個名字為 function 的函式,函式沒有不接受引數,所以括號內部為空,緊接著就是 函式的功能程式碼。如果執行該指令碼,發現並沒有輸出任何輸出,因為我們只定義了函式,而並沒有執行函式。 這時我們在 Python 命令提示符中輸入函式呼叫 function(), 注意這裡呼叫函式的括號不能省略。那麼 函式內部的功能程式碼將會執行,輸出結果:
1 This is a function 2 3
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/756/viewspace-2835800/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python中while 1表示什麼PythonWhile
- flutter中的=>表示什麼Flutter
- python裡字元表示什麼意思Python字元
- python中使用什麼表示註釋Python
- 在python中什麼是私有變數域Python變數
- 列表在python有什麼用Python
- Python表示式由什麼構成?Python基礎學習!Python
- 在Python中,val、exec和 compile 有什麼區別?PythonCompile
- 為什麼 Python 程式碼在函式中執行得更快?Python函式
- 在JavaScript中this到底指代什麼?JavaScript
- python中len什麼意思Python
- python中loc是什麼Python
- win10怎麼禁用def win10系統如何關閉defWin10
- 在Linux中,任務計劃格式中,前面5個數字分表表示什麼含義?Linux
- 在python裡int是什麼意思Python
- ->在c++中是什麼意思C++
- 在Linux中,什麼是 CLI?Linux
- 在Linux中,什麼是 GUI?LinuxGUI
- 在Linux中,什麼是 inode ?Linux
- 在Linux中,RabbitMQ是什麼?LinuxMQ
- solid在css中什麼意思SolidCSS
- python中的class代表什麼Python
- python中的input是什麼Python
- python中的字典是什麼Python
- python中return是什麼意思?Python
- python中mat是什麼意思?Python
- python中global是什麼意思?Python
- Python中的arange是什麼?和range有什麼不同?Python
- 在Python中使用“assert”有什麼用?Python
- python程式註釋寫在什麼位置Python
- Python的優點是什麼?誰在使用Python?Python
- python中Matplotlib是什麼?怎麼用?Python
- 玩家在遊戲中體驗到了什麼?遊戲
- 在Linux中,RAID 是什麼?LinuxAI
- 在Linux中,LVM是什麼?LinuxLVM
- Python中的mechanize模組是什麼?Python
- python中collections.Counter是什麼?Python
- python中flake8是什麼Python