|
27
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
class Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
All classes are mutable in Ruby
This lets you develop extensions to core classes. Here's an example of a rails extension:
class String
def starts_with?(other)
head = self[0, other.length]
head == other
end
end
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has built-in generators (which are used like Ruby blocks, as noted above)
Python has support for generators in the language. In Ruby you could use the generator module that uses continuations to create a generator from a block. Or, you could just use a block/proc/lambda! Moreover, in Ruby 1.9 Fibers are, and can be used as, generators.
docs.python.org has this generator example:
def reverse(data):
for index in range(len(data)-1, -1, -1):
yield data[index]
Contrast this with the above block examples.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import its contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur your namespace you can have packages, which are directories with modules and an init.py __init__.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not ("on purpose" -- see Ruby's website, see here how it's done in Ruby). It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
Python:
res = [x*x for x in range(1, 10)]
Ruby:
res = (0..9).map { |x| x * x }
Python:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
Ruby:
p = proc { |x| x * x }
(0..9).map(&p)
Python:
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
Ruby:
{1 =>2, 3=>4}.inject({}) do |result, key_value|
result[key_value[0]] = (key_value[1]** 2).to_s
result
end
Python has decorators
Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
26
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self . in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
class Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
All classes are mutable in Ruby
This lets you develop extensions to core classes. Here's an example of a rails extension:
class String
def starts_with?(other)
head = self[0, other.length]
head == other
end
end
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has built-in generators (which are used like Ruby blocks, as noted above)
Python has support for generators in the language. In Ruby you could use the generator module that uses continuations to create a generator from a block. Or, you could just use a block/proc/lambda! Moreover, in Ruby 1.9 Fibers are, and can be used as, generators.
docs.python.org has this generator example:
def reverse(data):
for index in range(len(data)-1, -1, -1):
yield data[index]
Contrast this with the above block examples.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import its contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not ("on purpose" -- see Ruby's website)website, see here how it's done in Ruby). It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
Python:
res = [x*x for x in range(1, 10)]
Ruby:
res = (0..9).map { |x| x * x }
Python:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
Ruby:
p = proc { |x| x * x }
(0..9).map(&p)
Python:
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
Ruby:
{1 =>2, 3=>4}.inject({}) do |result, key_value|
result[key_value[0]] = (key_value[1]** 2).to_s
result
end
Python has decorators
Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
25
|
|
|
Python has built-in generators (which are used like Ruby blocks, as noted above)Python has support for generators in the language. In Ruby you would instead could use the generator module that uses continuations to create a generator from a block. Or, you could just use a block/proc/lambda! Moreover, in Ruby 1.9 Fibers are, and can be used as, generators. docs.python.org has this generator example: def reverse(data): for index in range(len(data)-1, -1, -1): yield data[index]Contrast this with the above block examples.
|
|
|
|
24
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
class Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
All classes are mutable in Ruby
This lets you develop extensions to core classes. Here's an example of a rails extension:
class String
def starts_with?(other)
head = self[0, other.length]
head == other
end
end
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has generators
Python has support for generators in the language. In Ruby you would instead use the generator module that uses continuations to create a generator from a block.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import its contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not ("on purpose" -- see Ruby's website). It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
Python:
res = [x*x for x in range(1, 10)]
Ruby:
res = (0..9).map { |x| x * x }
Python:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
Ruby:
p = proc { |x| x * x }
(0..9).map(&p)
Python:
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
Ruby:
{1 => 2, 3 => 4 }.map { >2, 3=>4}.inject({}) do |x, y| y * y }result, key_value|
result[key_value[0]] = (key_value[1]** 2).to_s
result
end
Python has decorators
Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
23
|
|
|
Ruby does not ("on purpose" -- see Ruby's website). It does reuse the module concept as a sort of abstract classes. Python: Although you can do the same in ruby with maps and lambdas Ruby: res = (1..10).map{ 0..9).map { |x| x*x x * x }I don't know how to replace generator comprehensions or
Python3's dictionary comprehensions in Ruby, code is welcome: Ruby: p = proc { |x| x * x }(0..9).map(&p)Python: Ruby: { 1 => 2, 3 => 4 }.map { |x, y| y * y }
|
|
|
|
22
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
class Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
All classes are mutable in Ruby
This lets you develop extensions to core classes. Here's an example of a rails extension:
class String
def starts_with?(other)
head = self[0, other.length]
head == other
end
end
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has generators
Python has support for generators in the language. In Ruby you would instead use the generator module that uses continuations to create a generator from a block.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import it's its contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not. It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
res = [x*x for x in range(1, 10)]
Although you can do the same in ruby with maps and lambdas:
res = (1..10).map{ |x| x*x }
I don't know how to replace generator comprehensions or Python 3's dictionary comprehensions in Ruby, code is welcome:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
Python has decorators
Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
21
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
class Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
All classes are mutable in Ruby
This lets you develop extensions to core classes. Here's an example of a rails extension:
class String
def starts_with?(other)
head = self[0, other.length]
head == other
end
end
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has generators
Python has support for generators in the language. In Ruby you would instead use the generator module that uses continuations to create a generator from a block.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import it's contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not. It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
res = [x*x for x in range(1, 10)]
Although you can do the same in ruby with maps and lambdas:
res = (1..10).map{ |x| x*x }
I don't know how to replace generator comprehensions or Python 3's dictionary comprehensions in Ruby, code is welcome:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
Python has decorators
Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
20
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def
class Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has generators
Python has support for generators in the language. In Ruby you would instead use the generator module that uses continuations to create a generator from a block.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import it's contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not. It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
res = [x*x for x in range(1, 10)]
Although you can do the same in ruby with maps and lambdas:
res = (1..10).map{ |x| x*x }
I don't know how to replace generator comprehensions or Python 3's dictionary comprehensions in Ruby, code is welcome:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
Python has decorators
Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
19
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has generators
Python has support for generators in the language. In Ruby you would instead use the generator module that uses continuations to create a generator from a block.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import it's contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not. It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
res = [x*x for x in range(1, 10)]
Although you can do the same in ruby with maps and lambdas:
res = (1..10).map{ |x| x*x }
I don't know how to replace generator comprehensions or Python 3's dictionary comprehensions in Ruby, code is welcome:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
Python has keyword arguments
Python:
>>> def func(a, b=2, c=3):
>>> print a, b, c
>>> func(1, c=5)
1, 2, 5
>>> def func(**kw):
>>> print kw
>>> func(a=1, b=3, c=5)
{'a':1, 'b':3, 'c': 5}
None of these seem to exist in Ruby.
Python has decorators
Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
18
|
|
|
Python has keyword argumentsPython: >>> def func(a, b=2, c=3):>>> print a, b, c>>> func(1, c=5)1, 2, 5>>> def func(**kw):>>> print kw>>> func(a=1, b=3, c=5){'a':1, 'b':3, 'c': 5}None of these seem to exist in Ruby. Python has decoratorsThings similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.
|
|
|
|
17
|
|
|
Ruby has various protectionsRuby has various restrictions trying to protect things from the programmer. Variables that start with a capital letter becomes constants and can't be modified. Class names have to be constants. You can't access class attributes outside of the class, and maybe more. In Python, there are no such protections. Instead there is the convention of naming internal attributes and methods with a leading underscore and constants in all caps to tell other developers that they access/modify on their own risk. Ruby has first class continuations
|
|
|
|
16
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has various protections
Ruby has various restrictions trying to protect things from the programmer. Variables that start with a capital letter becomes constants and can't be modified. Class names have to be constants. You can't access class attributes outside of the class, and maybe more.
In Python, there are no such protections. Instead there is the convention of naming internal attributes and methods with a leading underscore and constants in all caps to tell other developers that they access/modify on their own risk.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Ruby has blocks
With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.
Ruby:
amethod { |here|
many=lines+of+code
goes(here)
}
Python:
def function(here):
many=lines+of+code
goes(here)
amethod(function)
Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.
Ruby:
def themethod
yield 5
end
themethod do |foo|
puts foo
end
Python:
def themethod():
yield 5
for foo in themethod:
print foo
Although the principles are different, the result is strikingly similar.
Python has generators
Python has support for generators in the language. In Ruby you would instead use the generator module that uses continuations to create a generator from a block.
Python has flexible name space handling
In Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.
In Python, the file is a module, and you can import it's contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not. It does reuse the module concept as a sort of abstract classes.
Python has list/dict comprehensions
res = [x*x for x in range(1, 10)]
Although you can do the same in ruby with maps and lambdas:
res = (1..10).map{ |x| x*x }
I don't know how to replace generator comprehensions or Python 3's dictionary comprehensions in Ruby, code is welcome:
>>> (x*x for x in range(10))
<generator object <genexpr> at 0xb7c1ccd4>
>>> list(_)
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}
{1: '4', 3: '16'}
|
|
|
|
15
|
|
|
Python has list/dict comprehensionsres = [x*x for x in range(1, 10)]Although you can do the same in ruby with maps and lambdas: res = (1..10).map{ |x| x*x }I don't know how to replace generator comprehensions or Python 3's dictionary comprehensions in Ruby, code is welcome: >>> (x*x for x in range(10))<generator object <genexpr> at 0xb7c1ccd4>>>> list(_)[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]>>> {x:str(y*y) for x,y in {1:2, 3:4}.items()}{1: '4', 3: '16'}
|
|
|
|
14
|
|
|
Ruby has blocksWith the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators. Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator. Ruby: def themethod yield 5themethod do |foo| puts fooPython: def themethod(): yield 5for foo in themethod: print fooAlthough the principles are different, the result is strikingly similar. Python has generatorsPython has support for generators in the language. In Ruby you would instead use the generator module that uses continuations to create a generator from a block.
|
|
|
|
13
|
|
|
Python has flexible name space handlingIn Ruby, when you import a file with require, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes. In Python, the file is a module, and you can import it's contained names with from themodule import *, thereby polluting the namespace if you want. But you can also import just selected names with from themodule import aname, another or you can simply import themodule and then access the names with themodule.aname. If you want more levels in yur namespace you can have packages, which are directories with modules and an init.py file. Python has docstringsRuby does not. It does reuse the module concept as a sort of abstract classes.
|
|
|
|
12
|
|
|
Ruby has BlocksBoth Python and Ruby has closures, and both have anonymous closures. Ruby calls these anonymous closures (or at least some of them) blocks, and functions are actually a sort of non-anonymous blocks. Python instead have first class functions that can be passed around. It's anonymous closures are lambdas, and can only be expressions, not multiline functions. What difference this makes in practice is unclear, it seems to be mainly a difference in principle and semantics. Ruby example: def kakmaskin yield "kaka"kakmaskin do |foo| print fooPython example: def kakmaskin(): yield "kaka"for foo in kakmaskin(): print fooRuby has Perl-like scripting featuresautomatic documentation.You can also put doctests in the docstrings.Ruby does not. In Python, () is required to call a function/methodThis may seem like a minor difference, but it isn't. Ruby's bar = thefunction will set bar to the result of calling the function without parameters. In Python the same code will set bar to be a reference to the function, which means functions (and methods) can be treated exactly like any other object in Python.
|
|
|
|
11
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby example:
def kakmaskin
yield "kaka"
end
kakmaskin do |foo|
print foo
end
Python example:
def kakmaskin():
yield "kaka"
for foo in kakmaskin():
print foo
Ruby has Blocks
Both Python and Ruby has closures, and both have anonymous closures. Ruby calls these anonymous closures (or at least some of them) blocks, and functions are actually a sort of non-anonymous blocks.
Python instead have first class functions that can be passed around. It's anonymous closures are lambdas, and can only be expressions, not multiline functions.
What difference this makes in practice is unclear, it seems to be mainly a difference in principle and semantics.
Ruby example:
def kakmaskin
yield "kaka"
end
kakmaskin do |foo|
print foo
end
Python example:
def kakmaskin():
yield "kaka"
for foo in kakmaskin():
print foo
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has various protections
Ruby has various restrictions trying to protect things from the programmer. Variables that start with a capital letter becomes constants and can't be modified. Class names have to be constants. You can't access class attributes outside of the class, and maybe more.
In Python, there are no such protections. Instead there is the convention of naming internal attributes and methods with a leading underscore and constants in all caps to tell other developers that they access/modify on their own risk.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation. You can also put doctests in the docstrings.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not.
In Python, () is required to call a functionfunction/method
This may seem like a minor difference, but it isn't. Ruby's bar = thefunction will set bar to the result of calling the function without parameters. In Python the same code will set bar to be a reference to the function, which means functions (and methods) can be treated exactly like any other object in Python.
|
|
|
|
10
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki, so we can add the big differences here.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby example:
def kakmaskin
yield "kaka"
end
kakmaskin do |foo|
print foo
end
Python example:
def kakmaskin():
yield "kaka"
for foo in kakmaskin():
print foo
Ruby has Blocks
Both Python and Ruby has closures, and both have anonymous closures. Ruby calls these anonymous closures (or at least some of them) blocks, and functions are actually a sort of non-anonymous blocks.
Python instead have first class functions that can be passed around. It's anonymous closures are lambdas, and can only be expressions, not multiline functions.
What difference this makes in practice is unclear, it seems to be mainly a difference in principle and semantics.
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables -variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Ruby has various protections
Ruby has various restrictions trying to protect things from the programmer. Variables that start with a capital letter becomes constants and can't be modified. Class names have to be constants. You can't access class attributes outside of the class, and maybe more.
In Python, there are no such protections. Instead there is the convention of naming internal attributes and methods with a leading underscore and constants in all caps to tell other developers that they access/modify on their own risk.
Ruby has first class continuations
Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation. You can also put doctests in the docstrings.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
Python has multiple inheritance
Ruby does not.
In Python, () is required to call a function
This may seem like a minor difference, but it isn't. Ruby's bar = thefunction will set bar to the result of calling the function without parameters. In Python the same code will set bar to be a reference to the function, which means functions (and methods) can be treated exactly like any other object in Python.
|
|
|
|
9
|
|
|
UPDATE: This is now a community wiki, so we can add the big differences here. Ruby has first class regexps, $-variables and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs. Ruby has various protectionsRuby has various restrictions trying to protect things from the programmer. Variables that start with a capital letter becomes constants and can't be modified. Class names have to be constants. You can't access class attributes outside of the class, and maybe more. In Python, there are no such protections. Instead there is the convention of naming internal attributes and methods with a leading underscore and constants in all caps to tell other developers that they access/modify on their own risk. Ruby has first class continuationsThanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language. Python has docstringsPython has a vast amount of available modules and bindings for libraries. Python has multiple inheritanceRuby does not.
|
|
|
|
8
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki.
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby example:
def kakmaskin
yield "kaka"
end
kakmaskin do |foo|
print foo
end
Python example:
def kakmaskin():
yield "kaka"
for foo in kakmaskin():
print foo
Ruby has Blocks
Both Python and Ruby has closures, and both have anonymous closures. Ruby calls these anonymous closures (or at least some of them) blocks, and functions are actually a sort of non-anonymous blocks.
Python instead have first class functions that can be passed around. It's anonymous closures are lambdas, and also lambdascan only be expressions, as anonymous closuresnot multiline functions.
What difference this makes in practice is unclear, it seems to be mainly a difference in principle and semantics.
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation. You can also put doctests in the docstrings.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
|
|
|
|
7
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki.
Class
Ruby has a class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby has Blocks
Both Python and Ruby has closures, and both have anonymous closures. Ruby calls these (or at least some of them) blocks, and functions are actually a sort of non-anonymous blocks. Python instead have first class functions, and also lambdas, as anonymous closures.
What difference this makes in practice is unclear.
Ruby has Perl-like scripting features
Ruby has first class regexps, $-variables and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation. You can also put doctests in the docstrings.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
Python has more libraries
Python has a vast amount of available modules and bindings for libraries.
|
|
|
|
6
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python.
UPDATE: This is now a community wiki.
Class reference in the class body
In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.
An example:
def Kaka
puts self
end
self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.
Ruby has Blocks
Both Python and Ruby has closures, and both have anonymous closures. Ruby calls these (or at least some of them) blocks, and functions are actually a sort of non-anonymous blocks. Python instead have first class functions, and also lambdas, as anonymous closures.
What difference this makes in practice is unclear.
Python has docstrings
Docstrings are strings that are attached to modules, functions and methods and can be
introspected at runtime. This helps for creating such things as the help command and
automatic documentation. You can also put doctests in the docstrings.
def frobnicate(bar):
"""frobnicate takes a bar and frobnicates it
>>> bar = Bar()
>>> bar.is_frobnicated()
False
>>> frobnicate(bar)
>>> bar.is_frobnicated()
True
"""
|
|
|
|
5
|
|
|
AGAINAlso, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self. in Python. UPDATE: This NOT about choosing one or another languageis now a community wiki.Just listing Class reference in the differencesclass bodyIn Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished. An example: def Kaka puts selfself in this case is the class, objectivelyand this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python. Ruby has BlocksBoth Python and Ruby has closures, and both have anonymous closures. Ruby calls these (or at least some of them) blocks, and functions are actually a sort of non-anonymous blocks. Python instead have first class functions, and also lambdas, as anonymous closures. What difference this makes in practice is unclear. Python has docstringsDocstrings are strings that are attached to modules, functions and methods and can beintrospected at runtime. This helps for creating such things as the help command andautomatic documentation. You can also put doctests in the docstrings.
|
|
|
| |
|
Post Made Community Wiki by Lennart Regebro
|
|
|
|
|
|
|
4
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Add
Don't have several differences in one answerfor each difference. Don't add duplicates, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective).
AGAIN: This NOT about choosing one or another language. Just listing the differences, objectively.
|
|
|
|
3
|
|
|
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Add one answer for each difference. Don't add duplicates, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective).
AGAIN: This NOT about choosing one or another language. Just listing the differences, objectively.
|
|
|
|
2
|
|
|
What does Ruby have that Python doens'tdoesn't, and vice versa?
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!
Add one answer for each difference. Don't add duplicates, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective).
|
|
|
|
1
|
|
|
What does Ruby have that Python doens't, and vice versa?
There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.
It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity.
Add one answer for each difference. Don't add duplicates, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective).
|
|
|