vote up 66 vote down star
55

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, 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.

flag
14  
I suggest you take some time and learn both languages to a point that you can clearly understand the philosophy behind each one. I know python but not ruby. While reading an extensive introduction to Ruby, I could not see anything that would be a compelling reason to use it over Python. I'm guessing that a ruby programmer would feel the same way the other way around, as the capabilities of the languages seem to be quite similar. --It seems that python has "less syntax and language rules" than ruby - in other words (don't shoot me), it seemed that ruby was slightly more perlish than python. – gahooa Jul 11 at 12:58
23  
I suggest YOU take some time to learn both languages to a point that you can clearly understand blahblahblah. ;-) This is about sharing information and knowledge. Those who DO know both languages very well can answer. – Lennart Regebro Jul 11 at 13:52
1  
should be community wiki – SilentGhost Jul 11 at 14:16
1  
That you can do the same thing some other way is an argument that doesn't hold. You can do everything here some other way. And since modules aren't classes, it's not multiple inheritance. You are welcome to contribute code examples of how it's done in Pythons multiple inheritence vs with Rubys modules. – Lennart Regebro Jul 11 at 22:53
1  
@Chuck, good point, and yet another example of the differing attitudes between the languages. Python sees that as implicit magick. If it is a method call, it should look like a method call. But, that's subjective territory again. – Lennart Regebro Jul 12 at 5:23
show 6 more comments

25 Answers

vote up 12 vote down

Ruby has the concepts of blocks, which are essentially syntactic sugar around a section of code; they are a way to create closures and pass them to another method which may or may not use the block. A block can be invoked later on through a yield statement.

For example, a simple definition of an each method on Array might be something like:

class Array
  def each
    for i in self  
      yield(i)     # If a block has been passed, control will be passed here.
    end  
  end  
end

Then you can invoke this like so:

# Add five to each element.
[1, 2, 3, 4].each{ |e| puts e + 5 }
> [6, 7, 8, 9]

Python has anonymous functions/closures/lambdas, but it doesn't quite have blocks since it's missing some of the useful syntactic sugar. However, there's at least one way to get it in an ad-hoc fashion. See, for example, here.

link|flag
1  
That last line would in Python be [print e+5 for e in [1,2,3,4]] so this example is unclear. It looks like Python has it... – Lennart Regebro Jul 11 at 12:43
2  
@Lennart: apart from your example just beeing horrible it is syntactically wrong, too. – unbeknown Jul 11 at 13:02
1  
@unbeknow: A, right. But if that had been a function instead of a print, it would have worked. In python 3 this works: [print(e+5) for e in [1,2,3,4]] And when it comes to horribleness, I think the ruby code above is horrible, so that's clearly subjective and thereby not a part of this question. @John I'm not saying it's equivalent, I'm saying it's not obvious what the difference is from your example. @Bastien, no, but that you can do similar things doesn't mean they are the same. Differences here should be listed even if there are otehr ways to do it. – Lennart Regebro Jul 11 at 13:40
1  
Well, I can't comment on the ruby code, I'm only a Python programmer. But what I want to point out is that even when some things are syntactically allowed you better don't do them (like using a functional construct like a list comprehension for the side effects). The reason may be the community that frowns on it or general software development principles that forbid it. So the OPs question for features that A has and B has not might be a little bit misleading in practice because nobody is using this feature in A either. – unbeknown Jul 11 at 14:55
7  
I'm a Python Programmer. I would like to see an example of how Ruby blocks help you to write something more concisely or more beautiful than with Python because it has not blocks. Your example could be written: for i in [1, 2, 3, 4]: print(i + 5). It doesn't use blocks, but its concise and beautiful as well as the ruby each example. – Manuel Ceron Jul 11 at 18:56
show 9 more comments
vote up 7 vote down

You can import only specific functions from a module in Python. In Ruby, you import the whole list of methods. You could "unimport" them in Ruby, but it's not what it's all about.

EDIT:

let's take this Ruby module :


module Whatever
  def method1
  end

  def method2
  end
end

if you include it in your code :


include Whatever

you'll see that both method1 and method2 have been added to your namespace. You can't import only method1. You either import them both or you don't import them at all. In Python you can import only the methods of your choosing. If this would have a name maybe it would be called selective importing?

link|flag
Oh, right! Python likes namespaces. Isn't that the case in Ruby? You don't import bla; bla.foo() in Ruby? – Lennart Regebro Jul 11 at 21:13
You can import only function a, not all the functions inside. If for example you include a Ruby module that declares 3 non-static functions, you get them all included in your namespace. In python you'd have to write from module import *. – Geo Jul 11 at 21:29
2  
Doesn't that lead to a lot of namespace clutter? – Lennart Regebro Jul 11 at 22:01
Are you referring to Ruby's module importing system? – Geo Jul 11 at 22:40
5  
Ruby doesn't really have a module system in the same sense as python. require works basically as textual inclusion with some checks for dupilicate inclusion baked in. You can (ab)use modules as namespaces but module is actually a bit of a misnomer. Modules are basically classes sans the new, allocate methods. They work best as a way to share code on a per class/object basis, not as mechanism for partitioning libraries, or to share code across programs. – Logan Capaldo Jul 12 at 15:29
show 2 more comments
vote up 6 vote down

What Ruby has over Python are its scripting language capabilities. Scripting language in this context meaning to be used for "glue code" in shell scripts and general text manipulation.

These are mostly shared with Perl. First-class built-in regular expressions, $-Variables, useful command line options like Perl (-a, -e) etc.

Together with its terse yet epxressive syntax it is perfect for these kind of tasks.

Python to me is more of a dynamically typed business language that is very easy to learn and has a neat syntax. Not as "cool" as Ruby but neat. What Python has over Ruby to me is the vast number of bindings for other libs. Bindings to Qt and other GUI libs, many game support libraries and and and. Ruby has much less. While much used bindings e.g. to Databases are of good quality I found niche libs to be better supported in Python even if for the same library there is also a Ruby binding.

So, I'd say both languages have its use and it is the task that defines which one to use. Both are easy enough to learn. I use them side-by-side. Ruby for scripting and Python for stand-alone apps.

link|flag
1  
Question from someone who does not yet know Ruby: What do you mean by "$-Variables"? Do you mean global variables? If so, in Python, a variable defined in a module outside of a class or function is global. If not - what's the distinction? – Anon Jul 11 at 16:07
Anon: if you declare a $variable anywhere in the code it is global because of the prefix. Thus, it doesn't matter where it is defined it is always global, and is always known as such. – The Wicked Flea Jul 11 at 20:20
4  
Not exactly, actually I meant pre-defined variables like $_, $1 etc. These are autmatically filled with values by ruby itself. $_ is the last line read. $1, $2, etc. are the regular expression matches from the last match. See here for a complete list: zenspider.com/Languages/Ruby/… It basically is a hack for compact scripts. You can get all the info via API calls too, but using $ variables it more terse. Such kind of variables just doesn't suit Python's style, they deliberately left them out. – haffax Jul 12 at 0:28
Thanks for that zenspider link - had been looking for something like that for a quick (non-tutorial) feel for Ruby. – Anon Jul 13 at 12:54
vote up 6 vote down

Python has a "we're all adults here" mentality. Thus, you'll find that Ruby has things like constants while Python doesn't (although Ruby's constants only raise a warning). The Python way of thinking is that if you want to make something constant, you should put the variable names in all caps and not change it.

For example, Ruby:

>> PI = 3.14
=> 3.14
>> PI += 1
(irb):2: warning: already initialized constant PI
=> 4.14

Python:

>>> PI = 3.14
>>> PI += 1
>>> PI
4.1400000000000006
link|flag
1  
Do you like this(python) way of thinking yourself? Just curious. – Dykam Jul 11 at 21:54
My subjective opinion on the issue is that I never understood why some languages have lots of features that prevent me from doing things. I love that Python doesn't try to stop me from doing what I need. But again, that's subjective, and hence OT. ;) – Lennart Regebro Jul 11 at 21:57
4  
Ha.. this just reminds me that at least in python 2.*, you were able to do "True, False = False, True"... I believe they have correctly fixed that in python 3.0... that's something you should be prevented from doing. – Tom Jul 12 at 6:08
1  
Personally, I like strict guidelines enforced by the language because it makes all code written in that language consistent. It forces you to follow the guidelines, and developers reading your code can tell at a glance what's what. While most Python coders use the same general "style", I've seen some pretty big inconsistencies that wouldn't be possible in Ruby. – musicfreak Jul 12 at 6:31
1  
@Tom: Yeah True and False are just builtin bool instances. :) In python 3 they added them to keywords as well, so you can't create new variables with those names. @musicfreak: I don't mind STYLE enforcements. After all, that's what Python indentation is.;-) It's things like private methods and things I don't like. I can often just stop reasonable code reuse, for example. – Lennart Regebro Jul 12 at 6:45
show 5 more comments
vote up 6 vote down

Python Example

Functions are first-class variables in Python. You can declare a function, pass it around as an object, and overwrite it:

def func(): print "hello"
def another_func(f): f()
another_func(func)

def func2(): print "goodbye"
func = func2

This is a fundamental feature of modern scripting languages. JavaScript and Lua do this, too. Ruby doesn't treat functions this way; naming a function calls it.

Of course, there are ways to do these things in Ruby, but they're not first-class operations. For example, you can wrap a function with Proc.new to treat it as a variable--but then it's no longer a function; it's an object with a "call" method.

Ruby's functions aren't first-class objects

Ruby functions aren't first-class objects. Functions must be wrapped in an object to pass them around; the resulting object can't be treated like a function. Functions can't be assigned in a first-class manner; instead, a function in its container object must be called to modify them.

def func; p "Hello" end
def another_func(f); method(f)[] end
another_func(:func)      # => "Hello"

def func2; print "Goodbye!"
self.class.send(:define_method, :func, method(:func2))
func                     # => "Goodbye!"

method(:func).owner      # => Object
func                     # => "Goodbye!"
self.func                # => "Goodbye!"
link|flag
by that token common lisp's functions aren't 'firstclass' nor scala's... – banister Jul 29 at 14:44
-1 this was all sorts of confused, so I added some info – bias Oct 15 at 17:14
You're badly confused. First-class objects are assigned by assignment: x = y, not by calling self.class.send(:define_method, :func, method(:func2)). Your "counterexample" shows just how Ruby's functions are not first-class. If you disagree, feel free to post your own answer; don't stick your confusion in mine. – Glenn Maynard Oct 17 at 1:08
vote up 4 vote down

Some others from:

http://www.ruby-lang.org/en/documentation/ruby-from-other-languages/to-ruby-from-python/

(If I have misintrepreted anything or any of these have changed on the Ruby side since that page was updated, someone feel free to edit...)

Strings are mutable in Ruby, not in Python (where new strings are created by "changes").

Ruby has some enforced case conventions, Python does not.

Python has both lists and tuples (immutable lists). Ruby has arrays corresponding to Python lists, but no immutable variant of them.

In Python, you can directly access object attributes. In Ruby, it's always via methods.

In Ruby, parentheses for method calls are usually optional, but not in Python.

Ruby has public, private, and protected to enforce access, instead of Python’s convention of using underscores and name mangling.

Python has multiple inheritance. Ruby has "mixins."

And another very relevant link:

http://c2.com/cgi/wiki?PythonVsRuby

Which, in particular, links to another good one by Alex Martelli, who's been also posting a lot of great stuff here on SO:

http://groups.google.com/group/comp.lang.python/msg/028422d707512283

link|flag
In ruby you could simply freeze your array to change it to something immutable – ChaosR Sep 7 at 15:33
vote up 4 vote down

I'm unsure of this, so I add it as an answer first.

Python treats unbound methods as functions

That means you can call a method either like theobject.themethod() or by TheClass.themethod(anobject).

Edit: Although the difference between methods and functions is small in Python, and non-existant in Python 3, it also doesn't exist in Ruby, simply because Ruby doesn't have functions. When you define functions, you are actually defining methods on Object.

But you still can't take the method of one class and call it as a function, you would have to rebind it to the object you want to call on, which is much more obstuse.

link|flag
Ruby doesn't have functions at all. That said, TheClass.instance_method(:themethod).bind(anobject).call would be the equivalent ruby. – Logan Capaldo Jul 11 at 21:18
Oh. So there is some sort of magic main class when you define a function that's not on an explicit class? – Lennart Regebro Jul 11 at 21:36
Yes, methods defined at the top level are private methods of Object. – Logan Capaldo Jul 11 at 21:38
you can get a reference to a method, to store them in a object, by calling the "method" method. – Geo Jul 11 at 21:41
1  
FWIW, it seems that in Python, functions and methods are actually the same type, and their different behavior comes from descriptors: users.rcn.com/python/download/…. – Bastien Léonard Jul 11 at 21:58
show 5 more comments
vote up 3 vote down check

You can have code in the class definition in both Ruby and Python. However, in Ruby you have a reference to the class (self). In Python you don't have a reference to the class, as the class isn't defined yet.

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.

link|flag
Can you provide more details (like code) for your first point? – dex Jul 11 at 12:28
Example code is a good idea, I added that, even though this case is trivial. – Lennart Regebro Jul 11 at 12:32
1  
what is the use case? – SilentGhost Jul 11 at 14:19
@SilentGhost: I can't think of one that isn't really obscure right now. :) – Lennart Regebro Jul 11 at 15:46
1  
@txwikinger: yeah, but not within the class' body, which is executed at the same time as the class statement. – Bastien Léonard Jul 11 at 15:59
show 9 more comments
vote up 3 vote down

Python has an explicit, builtin syntax for list-comprehenions and generators whereas in Ruby you would use map and code blocks.

Compare

list = [ x*x for x in range(1, 10) ]

to

res = (1..10).map{ |x| x*x }
link|flag
Can you give code examples? – Lennart Regebro Jul 11 at 20:48
how list comprehensions are not a plain Python? and there is a map function in Python as well. – SilentGhost Jul 12 at 9:13
But there is no list comprehension syntax in Ruby – Dario Jul 12 at 9:35
well, too bad for Ruby – SilentGhost Jul 12 at 10:08
??????????????? – Dario Jul 12 at 10:36
show 1 more comment
vote up 3 vote down

python has named optional arguments

def func(a, b=2, c=3):
    print a, b, c

>>> func(1)
1 2 3
>>> func(1, c=4)
1 2 4

AFAIK Ruby has only positioned arguments because b=2 in the function declaration is an affectation that always append.

Seems that 1.9 brings named arguments with :

foo(a:1, b:2)
link|flag
2  
what does "Ruby has only positioned arguments because b=2 in the function declaration is an affectation that always append" even mean? – banister Jul 29 at 20:05
Dunno what planet you live on, but def my_method(param1, optional = false) works in Ruby 1.8.6, 1.8.7, and presumably 1.9! – The Wicked Flea Oct 9 at 16:34
-1 lol ... each one of these Python answers gets Ruby completely wrong! – bias Oct 15 at 17:29
vote up 3 vote down

"Variables that start with a capital letter becomes constants and can't be modified"

Wrong. They can.

You only get a warning if you do.

link|flag
Ah, right you are. – Lennart Regebro Jul 13 at 11:32
vote up 3 vote down

From Ruby's website:

Similarities As with Python, in Ruby,...

  • There’s an interactive prompt (called irb).
  • You can read docs on the command line (with the ri command instead of pydoc).
  • There are no special line terminators (except the usual newline).
  • String literals can span multiple lines like Python’s triple-quoted strings.
  • Brackets are for lists, and braces are for dicts (which, in Ruby, are called “hashes”).
  • Arrays work the same (adding them makes one long array, but composing them like this a3 = [ a1, a2 ] gives you an array of arrays).
  • Objects are strongly and dynamically typed.
  • Everything is an object, and variables are just references to objects.
  • Although the keywords are a bit different, exceptions work about the same.
  • You’ve got embedded doc tools (Ruby’s is called rdoc).

Differences Unlike Python, in Ruby,...

  • Strings are mutable.
  • You can make constants (variables whose value you don’t intend to change).
  • There are some enforced case-conventions (ex. class names start with a capital letter, variables start with a lowercase letter).
  • There’s only one kind of list container (an Array), and it’s mutable.
  • Double-quoted strings allow escape sequences (like \t) and a special “expression substitution” syntax (which allows you to insert the results of Ruby expressions directly into other strings without having to "add " + "strings " + "together"). Single-quoted strings are like Python’s r"raw strings".
  • There are no “new style” and “old style” classes. Just one kind.
  • You never directly access attributes. With Ruby, it’s all method calls.
  • Parentheses for method calls are usually optional.
  • There’s public, private, and protected to enforce access, instead of Python’s _voluntary_ underscore __convention__.
  • “mixin’s” are used instead of multiple inheritance.
  • You can add or modify the methods of built-in classes. Both languages let you open up and modify classes at any point, but Python prevents modification of built-ins — Ruby does not.
  • You’ve got true and false instead of True and False (and nil instead of None).
  • When tested for truth, only false and nil evaluate to a false value. Everything else is true (including 0, 0.0, "", and []).
  • It’s elsif instead of elif.
  • It’s require instead of import. Otherwise though, usage is the same.
  • The usual-style comments on the line(s) above things (instead of docstrings below them) are used for generating docs.
  • There are a number of shortcuts that, although give you more to remember, you quickly learn. They tend to make Ruby fun and very productive.
link|flag
irb sucks ass compared to ipython, though. – Xiong Chiamiov Nov 5 at 8:52
vote up 2 vote down

I don't think "Ruby has X and Python doesn't, while Python has Y and Ruby doesn't" is the most useful way to look at it. They're quite similar languages, with many shared abilities.

To a large degree, the difference is what the language makes elegant and readable. To use an example you brought up, both do theoretically have lambdas, but Python programmers tend to avoid them, and constructs made using them do not look anywhere near as readable or idiomatic as in Ruby. So in Python, a good programmer will want to take a different route to solving the problem than he would in Ruby, just because it actually is the better way to do it.

link|flag
4  
I agree that lambdas have limited scope and aren't useful in many cases. However, I don't think it's fair to say that Python programmers avoid them like the plague. – Jason Baker Jul 11 at 14:55
I agree that lambdas are used often with Python - like with map, filter, reduce. The big difference seems to be that Python lambdas are limited to expressions whereas Ruby blocks can be multiline and involve statements. My general impression from what I've read about Ruby is that this feature in particular makes Rubyists go for the DSL approach, whereas Pythonistas are more likely to go for creating API's. My info on Ruby is still very superficial though. – Anon Jul 11 at 17:26
@Anon: I've looked high and low for example of anonymous multiline blocks in Ruby. If you can do them, then nobody (sensibly) seem to actually do it. Any example? – Lennart Regebro Jul 11 at 17:35
@Lennart: Multiline blocks are used all the time in Ruby -- more often than I see lambdas used in idiomatic Python code, actually. For a common example, see info.michael-simons.eu/2007/08/…. – Chuck Jul 11 at 18:04
Since I'm not a Ruby programmer, I'm glad Chuck responded. While looking out there for examples, I found this interesting proposal for Ruby-style blocks in Python: tav.espians.com/ruby-style-blocks-in-python.html/… – Anon Jul 11 at 18:18
show 10 more comments
vote up 2 vote down

Ruby has builtin continuation support using callcc.

Hence you can implement cool things like the amb-operator

link|flag
I wish I understood callcc. Can you give a more mundane application scenario than McCarthy's Ambiguous Operator, to appreciate its merrits? I mean something real-world, not that funky CS stuff?! – ThomasH Jul 13 at 8:59
vote up 2 vote down

Ruby has a line by line loop over input files (the '-n' flag) from the commandline so it can be used like AWK. This Ruby one-liner:

ruby -ne 'END {puts $.}'

will count lines like the AWK one-liner:

awk 'END{print NR}'

Ruby gets feature this through Perl, which took it from AWK as a way of getting sysadmins on board with Perl without having to change the way they do things.

link|flag
I'd like to add that Python's command line support is rather weak. Besides the missing automatic loop you cannot put a couple of statements in a single line and pass it as a single-string command line argument to the interpreter. At least I failed to do so. – ThomasH Jul 13 at 8:42
Of course you can. But you will (as with any otehr language) need to enclose is in quotes. – Lennart Regebro Oct 15 at 17:43
Python is not made to be used on the commandline, since you have to be explicit about some things (like sys.stdin) if you want to use it that way python -c "import sys; print len(list(sys.stdin))" – kaizer.se Nov 5 at 15:17
vote up 2 vote down

I would like to mention Python descriptor API that allows one customize object-to-attribute "communication". It is also noteworthy that, in Python, one is free to implement an alternative protocol via overriding the default given through the default implementation of the _ getattribute _ method. Let me give more details about the aforementioned. Descriptors are regular classes with __ get __, __ set __ and/or __ delete __ methods. When interpreter encounters something like anObj.anAttr, the following is performed:

  • __ getattribute __ method of anObj is invoked
  • __ getattribute __ retrieves anAttr object from the class dict
  • it checks whether abAttr object has __ get __, __ set __ or __ delete __ callable objects
  • the context (i.e., caller object or class, and value, instead of the latter, if we have setter) is passed to the callable object
  • the result is returned.

As was mentioned, this is the default behavior. One is free to change the protocol by re-implementing __ getattribute __.

This technique is lot more powerful than decorators.

link|flag
vote up 2 vote down

My python's rusty, so some of these may be in python and i just don't remember/never learned in the first place, but here are the first few that I thought of:

Whitespace

Ruby handles whitespace completely different. For starters, you don't need to indent anything (which means it doesn't matter if you use 4 spaces or 1 tab). It also does smart line continuation, so the following is valid:

def foo(bar,
        cow)

Basically, if you end with an operator, it figures out what is going on.

Mixins

Ruby has mixins which can extend instances instead of full classes:

module Humor
  def tickle
    "hee, hee!"
  end
end
a = "Grouchy"
a.extend Humor
a.tickle    » 	"hee, hee!"

Enums

I'm not sure if this is the same as generators, but as of Ruby 1.9 ruby as enums, so

>> enum = (1..4).to_enum
=> #<Enumerator:0x1344a8>

Reference: http://blog.nuclearsquid.com/writings/ruby-1-9-what-s-new-what-s-changed

"Keyword Arguments"

Both of the items listed there are supported in Ruby, although you can't skip default values like that. You can either go in order

def foo(a, b=2, c=3)
  puts "#{a}, #{b}, #{c}"
end
foo(1,3)   >> 1, 3, 3
foo(1,c=5) >> 1, 5, 3
c          >> 5

Note that c=5 actually assigns the variable c in the calling scope the value 5, and sets the parameter b the value 5.

or you can do it with hashes, which address the second issue

def foo(a, others)
  others[:b] = 2 unless others.include?(:b)
  others[:c] = 3 unless others.include?(:c)
  puts "#{a}, #{others[:b]}, #{others[:c]}"
end
foo(1,:b=>3) >> 1, 3, 3
foo(1,:c=>5) >> 1, 2, 5

Reference: The Pragmatic Progammer's Guide to Ruby

link|flag
Your second example foo(1,c=5) does not do what you think it does. Ruby does not have named parameters. – banister Aug 3 at 16:11
Thanks, I corrected the syntactic typo. – Scott Dugas Aug 19 at 18:39
Python has implicit line continuation inside brackets (, [ or { – kaizer.se Sep 28 at 12:26
vote up 2 vote down

Somewhat more on the infrastructure side:

  • Python has much better integration with C++ (via things like Boost.Python, SIP, and Py++) than Ruby, where the options seem to be either write directly against the Ruby interpreter API (which you can do with Python as well, of course, but in both cases doing so is low level, tedious, and error prone) or use SWIG (which, while it works and definitely is great if you want to support many languages, isn't nearly as nice as Boost.Python or SIP if you are specifically looking to bind C++).

  • Python has a number of web application environments (Django, Pylons/Turbogears, web.py, probably at least half a dozen others), whereas Ruby (effectively) has one: Rails. (Other Ruby web frameworks do exist, but seemingly have a hard time getting much traction against Rails). Is this aspect good or bad? Hard to say, and probably quite subjective; I can easily imagine arguments that the Python situation is better and that the Ruby situation is better.

  • Culturally, the Python and Ruby communities seem somewhat different, but I can only hint at this as I don't have that much experience interacting with the Ruby community. I'm adding this mostly in the hopes that someone who has a lot of experience with both can amplify (or reject) this statement.

link|flag
vote up 1 vote down

Python has docstrings and ruby doesn't... Or if it doesn't, they are not accessible as easily as in python.

Ps. If im wrong, pretty please, leave an example? I have a workaround that i could monkeypatch into classes quite easily but i'd like to have docstring kinda of a feature in "native way".

link|flag
1  
doesnt have docstring, but, does have RDoc. So yes, not as easily accessible, but not 100% hidden. – Omar Qureshi Jul 11 at 14:14
Ruby does not use docstrings. It does documentation in a different way. – Chuck Jul 11 at 14:38
Omar: yes, i know about rdoc but afaik, they are not "as accessible" as as python's docstrings. For example, if i have a class and i want to output the rdoc documentation from within the class its pretty hefty job. What i have done is that i generate ri documentation which i try to keep up2date and then fetch that info vi ri itself. Definetly not up to the same level as python's docstrings.. – rasjani Jul 11 at 16:18
Docstrings can be used to provide doctests. Is there something like that for Ruby? – Lennart Regebro Jul 11 at 16:24
1  
Yes, it's called "Ruby Doctest". As far as doctests are concerned, all that really matters is that you have readable documentation somewhere that includes testable code snippets -- it doesn't make a difference whether it's in a docstring or in a comment. – Chuck Jul 12 at 2:16
show 3 more comments
vote up 1 vote down

I'd like to suggest a variant of the original question, "What does Ruby have that Python doesn't, and vice versa?" which admits the disappointing answer, "Well, what can you do with either Ruby or Python that can't be done in Intercal?" Nothing on that level, because Python and Ruby are both part of the vast royal family sitting on the throne of being Turing approximant.

But what about this:

What can be done gracefully and well in Python that can't be done in Ruby with such beauty and good engineering, or vice versa?

That may be much more interesting than mere feature comparison.

link|flag
vote up 0 vote down

Ruby has sigils and twigils, Python doesn't.

Edit: And one very important thing that I forgot (after all, the previous was just to flame a little bit :-p):

Python has a JIT compiler (Psyco), a sightly lower level language for writing faster code (Pyrex) and the ability to add inline C++ code (Weave).

link|flag
True, but that's just syntax. – Lennart Regebro Jul 11 at 15:48
3  
Well, if you want to go down that road: both are Turing-complete. Everything else is just syntax. – Jörg W Mittag Jul 11 at 16:26
Yes and a importax syntax difference ;-) – fortran Jul 11 at 16:38
How is it important if you write @foo or self.foo? – Lennart Regebro Jul 11 at 16:47
1  
@Jörg: OK, call it something else than "syntax" then. The point is that @foo and self.foo does the same thing, it's not actually a functionality Ruby has and Python doesn't. – Lennart Regebro Jul 11 at 16:51
show 8 more comments
vote up 0 vote down

Surprised to see nothing mentioned of ruby's "method missing" mechanism. I'd give examples of the find_by_... methods in Rails, as an example of the power of that language feature. My guess is that something similar could be implemented in Python, but to my knowledge it isn't there natively.

link|flag
Python has get_attribute, which accomplishes basically the same thing as Ruby's method_missing. – mipadi Jul 13 at 17:11
vote up -1 vote down

Ruby has embedded documentation:

 =begin

 You could use rdoc to generate man pages from this documentation

 =end
link|flag
hm, i thought this might fit nicely to pythons docstrings – ko-dos Jul 16 at 18:56
The docstrings end up as a part of the methods/classes you set them on. So you can do help(class) and it will show you the docstrings, etc. – Lennart Regebro Jul 19 at 7:38
vote up -4 vote down

While the functionalty is to a great extent the same (especially in the Turing sense), malicious tongues claim that Ruby was created for Pythonistas that could not split up with the Perlish coding style.

link|flag
10  
Actually, it was created for Smalltalkers that want to break out of the image. – Jörg W Mittag Jul 11 at 16:27
vote up -8 vote down

Ruby has ugly syntax, Python does not. :P

link|flag
9  
You fail at reading the question. – Lennart Regebro Jul 11 at 13:53
1  
I think he knew that ... ;-) – behindthefall Jul 12 at 23:03
2  
And he's damn right xD – fortran Jul 13 at 8:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.