Can you elaborate on the current state of "blocks" (in the Ruby sense) in Python?
What are the language constructs that exist in Python? How do they compare to other languages (like Ruby, Smalltalk, [insert more])? Or does Python lack such constructs?
I have so far understood the lambda
thing; it is only one-line, but maybe it comes close. What about "decorators" and yield
in this context?
I am also using old Python versions in some projects. Which constructs were introduced in which Python version (2.5, 2.6, etc.) or are planned in future versions?
Can you link interesting articles on the subject that explain this stuff for Python and also comparing to other languages and could be interesting for someone who wants to extend basic Python knowledge?
Functions are the first-class members in Python:
def add(x, y):
return x + y
a = add # Bind
b = a(34, 1) # Call
So you can pass functions around all you want. You can do the same with any callable object in Python.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With