Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the use of return in python

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article is to share with you about the usefulness of return in python. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

The return statement is used to exit the function and return an expression to the caller. When the return statement is executed, the function is exited and the statement after return is no longer executed.

Such as:

Def my_print (x): if x = = 1: return False print ('i am xiaotao') return Truea = my_print (1) # satisfies if, executes return False, no longer executes subsequent statements, and jumps out of the function. Print (a) # output: False

Put the return statement in the try statement block, and the statements after the return will be executed

Def fun (): print (98) return 'ok' # when the return statement is executed, the function terminates The following statement no longer executes print (98) def func (): try: print (98) return 'ok' # function gets a return value finally: # statements in the finally statement block still execute print (98) print (fun ()) print (' -') print (func ())

Output:

ninety-eight

Ok

-

ninety-eight

ninety-eight

Ok

Return returns None by default without parameters (or without writing a return statement).

Thank you for reading! This is the end of this article on "what is the use of return in python?". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report