+ 1
Python - What's wrong with the is_Empty return or my mind? Why does it not return True or False?
Queue Solution - is_Empty method https://code.sololearn.com/cf06WPszyZBV/?ref=app
3 Réponses
+ 2
'is_empty' , 'next' are function names which returns addresses.
is_empty() , next() are function calling statements which returns result of function execution.
+ 1
Wow, thanks for making that clear. I guess better programmers can utilize addresses?
0
You can make alias names..
You're welcome..