Python Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPython Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 15th, 2012, 10:48 AM
dandan2 dandan2 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 dandan2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 57 m 54 sec
Reputation Power: 0
Wrong result from recursive func. in Python

Dear all,

I am quite new in Python. I want to write very simple function which gets an integer "c" and a list of integers "li". I would like to recursively find first two items where sum of them will be equal to "c". I have written this function in Python to find second option "n" and then I can easily find the first number by finding "c-n".

My code is:

Code:
def shop(c, li):
        if ((c-li[0]) in li[1:]):
                return li[0];
        else:
                shop(c, li[1:]);


The problem is when I call function as below:

Code:
c=100;
li=[5, 75, 25];

ii=shop(c, li);

print ii, "\n";


The result is always "None", however it should return "25". When I put a "print" statement before "return" I can see that the function has found the item correctly, but I am not sure why it is not returned.

Anybody know why this happens?

Thanks a lot!

Reply With Quote
  #2  
Old December 15th, 2012, 11:02 AM
b49P23TIvg's Avatar
b49P23TIvg b49P23TIvg is offline
Contributing User
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Aug 2011
Posts: 3,460 b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 2 Weeks 4 Days 6 h 56 m 42 sec
Reputation Power: 403
Repair

Code:
def shop(c, li):
    if ((c-li[0]) in li[1:]):
        return li[0]
    else:
        return shop(c, li[1:])
Python functions, by default, return None. When the test failed (in other words the value is not in list) the else block evaluated, and then the function returned None.
__________________
[code]Code tags[/code] are essential for python code!

Reply With Quote
  #3  
Old December 15th, 2012, 11:32 AM
dandan2 dandan2 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 dandan2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 57 m 54 sec
Reputation Power: 0
Thanks a lot for your answer. But when I call the function as I mentioned before, at the first round the test if failed, since 100-5 is not in the list. But at the second round, when the function is called recursively, it should return a number since 100-75 exists in the list. Am i right or am I missing something?



Quote:
Originally Posted by b49P23TIvg
Code:
def shop(c, li):
    if ((c-li[0]) in li[1:]):
        return li[0]
    else:
        return shop(c, li[1:])
Python functions, by default, return None. When the test failed (in other words the value is not in list) the else block evaluated, and then the function returned None.

Reply With Quote
  #4  
Old December 15th, 2012, 12:59 PM
dandan2 dandan2 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 3 dandan2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 57 m 54 sec
Reputation Power: 0
Hi again,

I solved the problem by rewriting the function as:

Code:
def shop(c, li):
        return li[0] if (c-li[0] in li[1:]) else shop(c, li[1:])

Reply With Quote
  #5  
Old December 15th, 2012, 05:41 PM
b49P23TIvg's Avatar
b49P23TIvg b49P23TIvg is offline
Contributing User
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Aug 2011
Posts: 3,460 b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level)b49P23TIvg User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Month 2 Weeks 4 Days 6 h 56 m 42 sec
Reputation Power: 403
Hmm. I see they added the ternary if expression to python2.

Your new statement demonstrates, in my opinion, good style because there's one return statement.

Do you still want an explanation of the failure in your first attempt?

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPython Programming > Wrong result from recursive func. in Python

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap