Click here to Skip to main content
15,909,205 members

Comments by Member 13842073 (Top 7 by date)

Member 13842073 4-Aug-18 12:51pm View    
The determinant is 0.0
Member 13842073 7-Jun-18 6:46am View    
Cool! Thank you so much for explaining
Member 13842073 7-Jun-18 6:24am View    
Why is it mandated to capture the return value of a function?
Member 13842073 7-Jun-18 6:17am View    
Thanks, Richard.
Once I am through the basics, I will try your solution as well.
Thanks again.
Member 13842073 7-Jun-18 6:15am View    
Bingo!
When I tried capturing in a variable, I did it once, somewhat like this:
x= bird_guess()
if(x not in bird_names):
print('1st try fail, do 2nd try')
bird_guess()
if(x not in bird_names):
print('2nd try fail, please do 3rd try')
bird_guess()

Got my mistake.
Thanks a lot!!