General syntax questions.

Please support our Python advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Jun 2009
Posts: 28
Reputation: Your_mum is an unknown quantity at this point 
Solved Threads: 0
Your_mum Your_mum is offline Offline
Light Poster

General syntax questions.

 
0
  #1
Jun 29th, 2009
This will hopefully be my last noobish question post.
Please could somebody explain or link to explanation:
1.yeild
2.return
thanx in advance
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 489
Reputation: shadwickman will become famous soon enough shadwickman will become famous soon enough 
Solved Threads: 76
shadwickman's Avatar
shadwickman shadwickman is offline Offline
Posting Pro in Training

Re: General syntax questions.

 
1
  #2
Jun 29th, 2009
Yield is for generator functions. Return ends the function and sends back the specified value.
Generators are functions that return iterators, i.e. they 'yield' a value after each iteration of them, before proceeding to the next one. This is generally used for things where you don't need all the results returned at once (which must load them all into memory), but instead only gives back the results one at a time (which can vastly reduce memory usage).

Python documentation on generators,
And on iterators.

Here's their example of a simple generator:
  1. def reverse(data):
  2. # start at the last index and step back one each time.
  3. for index in range(len(data)-1, -1, -1):
  4. yield data[index]
  5.  
  6. for char in reverse('golf'):
  7. print char
  8.  
  9. """result:
  10. f
  11. l
  12. o
  13. g
  14. """

What this does is call each iteration of the reverse function each time the "for" loop executes in the statement for char in reverse('golf') . This way, only a single letter is sent back each time, rather than the fully-reversed string.
This isn't a great example of generator usage, but say if you had a dataset with 1000s of numbers and you needed to perform calculations on them, but you'd only be working on one item in the set at a time anyway. Then a generator would be useful as it would save a TON of memory by only returning each item as it's needed.
Hope that helped!
Last edited by shadwickman; Jun 29th, 2009 at 4:12 am. Reason: clarity
"Two good old boys in a fire-apple red convertible. Stoned. Ripped. Twisted. Good people."
- Hunter S. Thompson

my photography
Reply With Quote Quick reply to this message  
Join Date: Jun 2009
Posts: 28
Reputation: Your_mum is an unknown quantity at this point 
Solved Threads: 0
Your_mum Your_mum is offline Offline
Light Poster

Re: General syntax questions.

 
0
  #3
Jun 29th, 2009
Thanks, that really helped me. But what is the point of 'returning' a value instead of just leaving it or printing it.
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 489
Reputation: shadwickman will become famous soon enough shadwickman will become famous soon enough 
Solved Threads: 76
shadwickman's Avatar
shadwickman shadwickman is offline Offline
Posting Pro in Training

Re: General syntax questions.

 
0
  #4
Jun 29th, 2009
The point is so that you can keep whatever changes you've made to a value. Like:
  1. # double-up a string
  2. def doubleUp(s):
  3. return s + s
  4.  
  5. a = "Hello world!"
  6. a = doubleUp(a)
  7. b = doubleUp(a)
  8. print a # should display Hello World!Hello World!
  9. print b # should display Hello World!Hello World!Hello World!Hello World!
If I just said s = s + s in the function, 'a' wouldn't be changed by saying doubleUp(a) as 's' is a variable in the local scope of the function. If I did this:
  1. def doubleUp(s):
  2. s = s + s
  3.  
  4. a = "Hello World!"
  5. doubleUp(a)
  6. print a # should display Hello World!
As you can see in the second example, all we did was change the value of 's' inside the function, but a isn't changed because we did not return the value of 's' and assign it back to 'a'.
In C++ you could pass either by pointer or by value, but Python's way of passing is a bit more complicated...
Hope I clarified that!
Last edited by shadwickman; Jun 29th, 2009 at 4:17 pm.
"Two good old boys in a fire-apple red convertible. Stoned. Ripped. Twisted. Good people."
- Hunter S. Thompson

my photography
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Python Forum


Views: 249 | Replies: 3
Thread Tools Search this Thread



Tag cloud for Python
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC