如何在PYTHON里运用return

2025-03-23 20:36:56

1、打开JUPYTER NOTEBOOK,新建一个PY文档。

如何在PYTHON里运用return

2、print("ok")初学者都知道print可以打印相应的数据。其实有另外一个类似的函数。

如何在PYTHON里运用return

3、return "ok"return其实类似于print,但是一定要在函数里面用。

如何在PYTHON里运用return

4、print("ok A&孥恶膈茯quot;)def func(): return "ok B"print(func())print("ok C")设置在function里面就可以用return了。

如何在PYTHON里运用return

5、print("ok A&孥恶膈茯quot;)def func1(): return("ok B")print烫喇霰嘴(func1())print("ok C")实际上可以类似于print加上括号。

如何在PYTHON里运用return

6、print("ok A")def func2(): returnprint(func2())print("ok C")如果return后面什么都没有,其实是不会输出的。

如何在PYTHON里运用return

7、print("ok A&孥恶膈茯quot;)def func3(): return True print("ok A媪青怍牙")print(func3())print("ok C")如果设置了返回值,返回值后面的就不显示了。

如何在PYTHON里运用return

8、print("ok A")def func4(): return 3, 4print(func4())print("ok C")可以同时设置多个返回值。

如何在PYTHON里运用return

9、print("ok A")def func5(): return 3 + 4print(func5())print("ok C")我们也可以让返回值进行运算。

如何在PYTHON里运用return
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢