Saturday, July 27, 2024

The usage of return and world key phrases

[ad_1]

Okay so right here we have now one other submit. This submit is in regards to the return key phrase. you might need encountered some features written in python which have a return key phrase ultimately of the perform. Are you aware what it does? Lets look at this little perform:

>>> def add(value1,value2):
...     return value1 + value2

>>> outcome = add(3,5)
>>> print outcome
8

The perform above takes two values as enter after which output their addition. We might have additionally completed:

>>> def add(value1,value2):
...     world outcome
...     outcome = value1 + value2

>>> add(3,5)
>>> print outcome
8

So first lets speak in regards to the first little bit of code which entails the return key phrase. What that perform is doing is that it’s assigning the worth to the variable which is looking that perform which in our case is outcome.

It’s fairly helpful usually and also you gained’t want to make use of the worldwide key phrase. Nonetheless lets look at the opposite little bit of code as effectively which incorporates the worldwide key phrase. So what that perform is doing is that it’s making a worldwide variable outcome. What does world imply right here ? World variable implies that we will entry that variable outdoors the perform as effectively. Let me exhibit it with an instance:

# first with out the worldwide variable
>>> def add(value1,value2):
	outcome = value1 + value2
	
>>> add(2,4)
>>> outcome

# Oh crap we encountered an exception. Why is it so ?
# the python interpreter is telling us that we don't 
# have any variable with the title of outcome. It's so 
# as a result of the outcome variable is simply accessible inside 
# the perform by which it's created if it isn't world.
Traceback (most up-to-date name final):
  File "", line 1, in 
    outcome
NameError: title 'outcome' shouldn't be outlined

# Now lets run the identical code however after making the outcome 
# variable world
>>> def add(value1,value2):
	world outcome
	outcome = value1 + value2

	
>>> add(2,4)
>>> outcome
6

So hopefully there have been no errors within the second run as anticipated. If you wish to additional discover them you must try the next hyperlinks.

  1. Stackoverflow
  2. Stackoverflow

[ad_2]

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest Articles