vote up -4 vote down star
1

Python, Lua, Ruby or something else?

For me Lua > Ruby > Python, but I am not very experienced in the last 2.

flag

56% accept rate
Btw I tried to mark this as wiki but it doesn't work. – Joan Venge Feb 4 at 17:20
JS and it's not even close, but I'm not touching this flamebait with a bargepole :) – annakata Feb 4 at 17:37
Don't worry it's all for a good cause. – Joan Venge Feb 4 at 17:42
-1: I can't understand your meaning of "clean" or "neat" without a definition or examples. If Lua is the example... then... what's the question? – S.Lott Feb 4 at 17:51
question is silly – Nick Feb 4 at 17:56

closed as subjective and argumentative by Aaron Maenpaa, annakata, ΤΖΩΤΖΙΟΥ, Norman Ramsey Feb 5 at 5:19

6 Answers

vote up 2 vote down check

If I were to speak from the perspective of embedding then:

Lua:

  • Designed specifically to be an embedded language.
  • Light (lighter than Python)
  • Written in C, has nice API, does not have many dependencies, will compile almost anywhere
  • Doesn't have issues with multithreading (compare with embedding Python)
  • Syntax is rather simple (and not sensitivity to whitespace)

Python:

  • large, comes from a bloated standard library that is usually not needed in such applications, has more dependencies
  • Globals which makes multiple interpreters a bit more painful)
  • More documentation, more programmers

Of course some of the mentioned points are positive in one context and negative in other (for example the amount of libraries).

Apart from that consider:

  • Tcl - nice, light, but everything is a string...
  • Javascript - general purpose, object oriented language that can be easily embedded
  • Ruby similar arguments to Python

Note on the Python bloat: libpython2.5.so ~1500kb + dependencies on other libraries, lua - an order of magnitude less. Besides there is no hassle with sandboxing/jailing. And really, for embedding this can be a big difference.

link|flag
-1: Python bloated. The language is very small, the library can be ignored. – S.Lott Feb 4 at 21:49
We just use different notion of smallness. Some have to deal with space constraints. – unknown (google) Feb 4 at 22:59
This is a good topic but choosing an answer is not, since any answer is subjective. – Joe Soul-bringer Feb 5 at 5:08
Yes, the question is so vague, that any answer will do. It's similar to the discussion whether cats or dogs are better ;) – unknown (google) Feb 5 at 11:32
vote up 0 vote down

Must... not... post... WhiteSpace

link|flag
vote up 1 vote down

Lua > Ruby > Python

For me, they are not bigger nor better, the idea is that they're different.

I don't know Ruby, but I know Python works as object oriented and Lua is metatable oriented. So, choosing one should depend on which paradigm best suits your project and makes you more comfortable.

link|flag
vote up 11 vote down

I have yet too see anything cleaner than Python:

if not "aura" in "restaurant": print "hello world"

for myItem in myList:
    print myItem

Ruby has an (IMO!) ugly perlish syntax:

puts "hello world" unless “restaurant”.include? “aura”

myList.each do |myItem|
   puts myItem
end
link|flag
In ruby, for the list thing, you can do it exactly the python way and without colon and indentation. The "each" block is just another way to do it. – Chirantan Feb 4 at 17:40
Chirantan is right. As for the first snippet, you could easily rewrite it like this: if not "restaurant" =~ /aura/ then print "hello world" end or like this: puts "hello world" if not "restaurant" =~ /aura/ – Milan Novota Feb 4 at 19:06
1  
+1: Python has clean, clear, obvious desirable punctuation. I like indentation, since it's what I would do anyway. – S.Lott Feb 4 at 21:50
vote up 1 vote down

If you are really looking for clean language, there is really no alternative to functional languages. Haskell is on of the cleanest languages around.

link|flag
vote up 0 vote down

It all depends on what you think is "clean" and "nice." Some people might find assembly a nice clean language. For the most expressive language, in the least amount of syntax, I think Ruby would be my bet.

link|flag
+1: One person's clean is another person's unreadable. Example: PERL. – S.Lott Feb 4 at 17:50

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