导语:
本文主要介绍了关于python的函数结果是什么的相关知识,希望可以帮到处于编程学习途中的小伙伴
返回值简介
简单介绍一下print和return的区别。 print只是打印在控制台,而return是使用return之后的部分作为返回值:作为函数的输出,可以使用变量
量接走,继续使用该返回值做其它事。
推荐:
需要先定义函数,再调用。函数体中return语句的结果就是返回值。如果一个函数没有 reutrn 语句,它实际上有一个隐式的 return 语句,返回
值是None,类型也是'NoneType'。.
def func(x,y):
num = x + y
return
print(func(1,2))
#上面代码的输出结果为:None
从上面的例子可以看出print()只是一个打印函数,函数返回什么由return决定
return语句的作用:
结束函数调用、返回值
指定返回值与隐含返回值:
1.当函数体中的return语句有指定的返回值时,返回其值
2、当函数体中没有return语句时,函数运行结束时会隐式返回一个None作为返回值。类型为NoneType,相当于return和return None,返回None。
def showplus(x):
print(x)
return x + 1
num = showplus(6)
add = num + 2
print(add)
#上面函数的输出结果为:6、9
隐含return None 举例:
def showplus(x):
print(x)
num = showplus(6)
print(num)
print(type(num))
"""
上面函数的输出结果为:6
6
None
<class 'NoneType'>
"""
函数返回值赋值给变量:
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 )
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ eval在python中是什么意思08/17
- ♥ 使用python这么久,这些零散的基础知识你还记得多少?11/16
- ♥ Python如何将图片转为字符12/21
- ♥ python如何导入自定义模块?10/30
- ♥ python如何判断库是否安装?09/01
- ♥ 如何在python中编写空函数?10/04
内容反馈