真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

關(guān)于python的函數(shù)返回值簡介

小編給大家分享一下關(guān)于python的函數(shù)返回值簡介,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、成都小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了獨(dú)山免費(fèi)建站歡迎大家使用!

返回值簡介

簡單介紹print和return的區(qū)別,print僅僅是打印在控制臺(tái),而return則是將return后面的部分作為返回值:作為函數(shù)的輸出,可以用變

量接走,繼續(xù)使用該返回值做其它事。

推薦:Python教程

函數(shù)需要先定義后調(diào)用,函數(shù)體中return語句的結(jié)果就是返回值。如果一個(gè)函數(shù)沒有reutrn語句,其實(shí)它有一個(gè)隱含的return語句,返回

值是None,類型也是'NoneType'。.

def func(x,y):
    num = x + y
    return
 
print(func(1,2))
 
#上面代碼的輸出結(jié)果為:None

從上面例子可以看出print( )只是起一個(gè)打印作用,函數(shù)具體返回什么由return決定

return語句的作用:

結(jié)束函數(shù)調(diào)用、返回值

指定返回值與隱含返回值:

1、函數(shù)體中return語句有指定返回值時(shí)返回的就是其值

2、函數(shù)體中沒有return語句時(shí),函數(shù)運(yùn)行結(jié)束會(huì)隱含返回一個(gè)None作為返回值,類型是NoneType,與return 、return None 等效,都是返回 None。

def showplus(x):
print(x)
return x + 1
num = showplus(6)
add = num + 2
print(add)
#上面函數(shù)的輸出結(jié)果為:6、9

隱含return None 舉例:

def showplus(x):
print(x)
num = showplus(6)
print(num)
print(type(num))
"""
上面函數(shù)的輸出結(jié)果為:6
6
None

"""

函數(shù)返回值賦值給變量:

import os
import sys
import subprocess
 
def get_manifest_xml_path():
    xml_path = input()
    if os.path.exists( xml_path ):
        return xml_path
    else:
        print('AndroidManifest.xml not found!')
 
 
def get_out_path( xml_path ):
    return os.path.dirname( os.path.abspath( xml_path ) ) + os.sep + 'AndroidManifest.txt'
 
 
def convert_xml_to_txt( xml_path, out_path ):
    convert_cmd = 'java -jar AXMLPrinter2.jar %s>%s' % ( xml_path, out_path )
    subprocess.Popen( convert_cmd, shell=True )
 
if __name__ == "__main__":
    xml_path = get_manifest_xml_path()
    out_path = get_out_path( xml_path )
    convert_xml_to_txt( xml_path, out_path )

看完了這篇文章,相信你對(duì)關(guān)于python的函數(shù)返回值簡介有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站題目:關(guān)于python的函數(shù)返回值簡介
本文鏈接:http://weahome.cn/article/pcdegg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部