Should I learn Ruby or Python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T20:56:47Zhttp://stackoverflow.com/feeds/question/673964http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python7Should I learn Ruby or Python?compie2009-03-23T15:59:29Z2009-12-09T17:43:05Z
<p>I'm a C(++)/C# programmer and I would like to learn a scripting language to create small tools (text processing, build scripts, a little web development, etc). I would like to learn either Ruby or Python. Is there a good reason to chose one over the other? </p>
<p>I looked at some sample code in both languages and they seem very similar to me. Maybe I'm missing something here? I also found the following comparisons:</p>
<ul>
<li><a href="http://blog.ianbicking.org/ruby-python-power.html" rel="nofollow">Ruby, Python, "Power"</a></li>
<li><a href="http://johan.kiviniemi.name/blag/ruby-vs-python/" rel="nofollow">Ruby vs. Python</a></li>
</ul>
<h3>Related</h3>
<ul>
<li><a href="http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philsophical-pers">What are the biggest differences between Python and Ruby from a philsophical perspective</a></li>
<li><p><a href="http://stackoverflow.com/questions/556874/ruby-python-or-perl-closed">Ruby, Python or Perl?</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming">Python Vs. Ruby for Metaprogramming</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/84340/why-learn-perl-python-ruby-if-the-company-is-using-c-c-or-java-as-the-appli">Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/143586/which-scripting-language-should-i-learn-after-perl">Which scripting language should I learn after Perl?</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/410183/interested-in-collective-programming-for-the-web-ruby-or-python-or-php">Interested in Collective Programming for the web — Ruby or Python or PHP?</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/328041/scripting-language-choice-for-initial-performance">Scripting language choice for initial performance</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/301493/which-language-is-easiest-and-fastest-to-work-with-xml-content">Which language is easiest and fastest to work with XML content?</a></p></li>
</ul>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/673986#6739861Answer by Migol for Should I learn Ruby or Python?Migol2009-03-23T16:04:24Z2009-03-23T16:19:00Z<p>For text processing and build scripts I think Perl would be the best, with second place taken by Python and third for Ruby.</p>
<p>But for the web development Ruby with Rails would be the best, Python in the middle and Perl last.</p>
<p><strong>EDIT</strong>: One more thing - additional libraries:</p>
<ul>
<li>Ruby has RubyForge and RubyGems - I think there is nearly everything you would need implemented.</li>
<li>Python comes with batteries included - lots of functionality works out-of-box. But I haven't found and good source for modules, nor system to manage them</li>
<li>Perl has CPAN - I think this is the best archive for libraries.</li>
</ul>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/673988#6739881Answer by amirka for Should I learn Ruby or Python? amirka2009-03-23T16:04:39Z2009-03-23T16:04:39Z<p>Ruby is slower, but it have drb by default</p>
<p>Python is faster and have decorators</p>
<p>Some things is better in python, some in ruby, they are different</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/673999#6739996Answer by Amit Kumar for Should I learn Ruby or Python?Amit Kumar2009-03-23T16:07:40Z2009-03-23T17:56:11Z<p>Python is an older language than ruby. Older than java. Now it is more popular than ever. For these two reasons, I would prefer to learn Python. </p>
<p>EDIT:
Python also has a good C++/C interface allowing for performance programming when needed. Ruby would have similar such thing, but is not as well-known. </p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674008#674008-2Answer by Apreche for Should I learn Ruby or Python?Apreche2009-03-23T16:08:58Z2009-03-23T16:08:58Z<p>If you know the fundamental concepts of object oriented programming, then the only major difference between languages is the syntax. You shouldn't need to "learn" one or the other. You should be able to use whichever language is best for the task at hand. A few days with a reference book or web site, and you should be able to use any language. </p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674026#67402621Answer by Steve B. for Should I learn Ruby or Python?Steve B.2009-03-23T16:15:32Z2009-03-23T16:15:32Z<p>I learned python first, Ruby much later. </p>
<ul>
<li>Both are radically simpler than
C++/Java (can't comment on C#, don't
know it well).</li>
<li>Both add functional constructs, and
constructs for elegant code lacking
in the C's (decorators, closures in
Ruby, map/reduce)</li>
<li>Both are dynamically typed.</li>
<li>Ruby is younger and maybe a bit more
elegant, has a reputation for
somewhat slower performance.</li>
</ul>
<p>Coming from the Java land, the (conceptual) distance between Python and Ruby is negligible compared to the distance from java to either one. Both are very nice and well supported. It's probably impossible to make a bad decision here.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674039#6740397Answer by dalke for Should I learn Ruby or Python?dalke2009-03-23T16:17:56Z2009-03-23T21:33:26Z<p>Python and Ruby are both effective for what you've described. Python has a larger user base, has more libraries, and more documentation. It's more likely you'll be able to find help with Python code if you run into difficulties.</p>
<p>They do have differences in style and attitude. For example, Ruby has code blocks while Python uses iterators/generators. Ruby people tend to do things like use Ruby's open classes which, while possible in Python, is frowned upon. It's partially a cultural difference - how important are the expressive needs of a single programmer over the cohesiveness of a group?</p>
<p>Me, I chose Python a long time ago, so I'm rather biased and stuck in my ways. ;)</p>
<p>If you were only doing web development then the weighting factors are different. There's a lot of information about Ruby on Rails, while the nearest Python equivalents (Zope and Django) don't have the same mind share.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674138#67413811Answer by vezult for Should I learn Ruby or Python?vezult2009-03-23T16:37:34Z2009-03-23T16:37:34Z<p>Unless there is a specific set of libraries, or web development framework that you want to use, or other constraints which give one language a significant advantage in your environment, it's more important that you pick the language that you like best.</p>
<p>Advocates of each language will probably say theirs is better for this reason or that, but in most situations, it doesn't really matter. Both languages arguably have equal expressibility.</p>
<p>
I personally prefer python. I like its emphasis on simplicity, readability, and a preference for the explicit over the implicit.
</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674215#6742156Answer by Horn for Should I learn Ruby or Python?Horn2009-03-23T16:54:52Z2009-03-23T16:54:52Z<p>It really depends on the task. If I were you, I wouldn't be comparing languages - I'd be comparing communities. Instead of Python vs Ruby look at Django vs Rails. Look at python libraries vs Ruby gems.</p>
<p>I've tried both and coming from a .Net background I find python to be a much more natural language.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674251#67425110Answer by Jon Cage for Should I learn Ruby or Python?Jon Cage2009-03-23T17:03:12Z2009-03-24T01:35:46Z<p>One reason that a lot of people seemed to have overlooked is <a href="http://xkcd.com/353/" rel="nofollow">Antigravity</a>! ;-)</p>
<p>More seriously though, I'd have to agree with those who suggested it depends what you want to do. If your focus is less web based I would be more inclined to recommend Python. It's astonishing how many modules are available, even for interaction with hardware!</p>
<p>When I was 'getting over' PHP I tried Rails because there seemed to be a lot of buzz about it at the time. Contrary to a lot of other people's experience (judging by the comments in this thread), I actually found Django far easier!</p>
<p>Ruby/Rail's talk of scaffolding and a whole host of other terminology I can't even remember now left me confused. I could see that if you got the hang of it there were some powerful techniques, but the barrier to getting something going and understanding it delayed me enough to try something else...</p>
<p>...enter Python/Django which somehow just clicked with the way my mind works. Python's syntax reads like english which is something I personally value really highly in a language. There's less quirky bits of syntax (compared to Perl or Ruby) - I suspect if you showed someone who'd never coded in either language, the Python code might more sense*. There's some fantastic resources to get you started in Python/Django such as <a href="http://www.djangobook.com/" rel="nofollow">The Django Book</a>.</p>
<p>*Completely unqualified / subjective, but that's what I've taken from trying both :-)</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674280#6742801Answer by Andrey Fedorov for Should I learn Ruby or Python?Andrey Fedorov2009-03-23T17:07:43Z2009-03-23T17:07:43Z<blockquote>
<p>I looked at some sample code in both languages and they seem very similar to me. </p>
</blockquote>
<p>They <em>are</em> virtually the same, in what paradigms they support - functional, object-oriented, untyped. In my experience, Ruby handles string manipulation nicer (because of the syntax sugar for regex), while Python is easier to learn with better documentation and iPython. They vary a lot when it comes to philosophy of what kind of UI code should be, so it's probably best to start learning both and figuring out which style fits your personality better.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674334#6743342Answer by Geo for Should I learn Ruby or Python?Geo2009-03-23T17:18:10Z2009-03-23T17:18:10Z<p>As a person who wrote code in both ruby and python, I would recommend ruby. Not that python is bad, but, ruby makes a lot of things easier for you as a coder. </p>
<p>The "magic" ruby uses is not cryptic, and it's something you can learn pretty fast. Pythonistas claim that their code is cleaner than other languages, the truth is that this is subjective. Personally, I hate python's <em>magic/ugly</em> underscore methods and passing <em>self</em> as a method parameter.</p>
<p>Both languages are equally powerful, and, let's be honest, since you are new to scripting, speed isn't your main concern. Already, ruby 1.9 is fast.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674585#6745852Answer by jshen for Should I learn Ruby or Python?jshen2009-03-23T18:17:06Z2009-03-23T18:17:06Z<p>The biggest difference is cultural, not technical. I'd play around with each and see which fits you better. The one thing I think ruby has going for it is jruby, which is a stable actively developed alternative implementation that opens many doors. At work I'm using jruby 100% of the time these days because we're using lucene. </p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/674972#6749724Answer by Salim Fadhley for Should I learn Ruby or Python?Salim Fadhley2009-03-23T19:47:12Z2009-03-23T19:47:12Z<p>Ruby is a great language with one killer app which dominates the community: Rails. If you want to be part of that community you need Ruby. Rails dominates the Ruby community which is good because it gives Ruby developers some real focus, but not so good if you are not particularly interested in Web 2.0. </p>
<p>Python by comparison is far more mature and has libraries for just about everything you might ever one (I do scientific computing for Finance). It's just not particularly web-focussed. The nearest thing we have to Ruby (Django) is nowhere near as fully featured as Rails. The Python community is much bigger and has far more diverse interests.</p>
<p>It seems to me the choice is clear: </p>
<ul>
<li>If your focus is building web-sites or web-applications go Ruby</li>
<li>If you want to do anything else, Python is probably the best bet</li>
<li>If you are not sure what you want to do Python is probably the best bet</li>
</ul>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/676016#6760166Answer by monkut for Should I learn Ruby or Python?monkut2009-03-24T02:54:51Z2009-03-24T02:54:51Z<p>Do the tutorials and decide for yourself. </p>
<p><strong>Python</strong>:
<a href="http://docs.python.org/tutorial/index.html#the-python-tutorial" rel="nofollow">http://docs.python.org/tutorial/index.html#the-python-tutorial</a></p>
<p><strong>Ruby</strong>:
<a href="http://www.ruby-lang.org/en/documentation/quickstart/" rel="nofollow">http://www.ruby-lang.org/en/documentation/quickstart/</a></p>
<p>If there is anything specific you can't figure out how to do in either language, just ask it here.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/679852#6798522Answer by robc for Should I learn Ruby or Python?robc2009-03-25T00:59:21Z2009-03-25T00:59:21Z<p>Also consider the practicality of runtime issues for your environment. If you're going to want to run stuff on diverse OSes, (especially if you use a lot of non-core modules), you'll probably find that Python imposes less of a systems management tax.</p>
<p>For example, Ruby isn't a standard package on Solaris prior to OpenSolaris, and tools for creating standalone executables for Ruby seem a bit flaky to me (Perl's PAR::Packer still has them all beat :-)).</p>
<p>That said, considering just the language, I personally prefer Ruby.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/766330#766330-1Answer by Parvenu74 for Should I learn Ruby or Python?Parvenu742009-04-19T23:06:25Z2009-04-19T23:06:25Z<p>Using the rule of "excellence by association," Python is better because it is one of the three languages -- along with C/C++ and Java -- that Google uses for application development. The degree to which you agree or disagree with this answer depends on how much you trust the PhD's at Google to be smarter than all of us in <strong><em>not</em></strong> picking Ruby for app development.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/881668#8816680Answer by Curt Sampson for Should I learn Ruby or Python?Curt Sampson2009-05-19T08:59:36Z2009-05-19T08:59:36Z<p>For your situation, someone who wants to sit down and start producing useful stuff quickly in both the short and long term, this is fairly simple. Use whatever people around you are using. Being able to poke your head in someone's office and get his help and feedback on a script is by far the fastest method of support. If it's someone in your company or workgroup, you'll probably be able to share code, as well.</p>
<p>The two languages themselves are similar enough that having that sort of support will make a bigger difference than anything else.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/1093621#10936210Answer by Victor Yan for Should I learn Ruby or Python?Victor Yan2009-07-07T17:21:56Z2009-07-07T17:21:56Z<p>It really comes down to matter of taste, and perhaps, philosophy.
For me at the moment I favor Python over Ruby, because I believe Python to be easier to learn and generally more readable. It's such a compact language that you can hold almost all the language features in your mind at the same time, which means that the language, as Bruce Eckel put it, "Fits your brain".
This is important because we can thus focus more on IDEAS and CONCEPTS, the very essence of programming, instead of going to great lengths trying to stuff different versions of syntax into your mind.</p>
http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/1875577#18755770Answer by Mantas for Should I learn Ruby or Python?Mantas2009-12-09T17:43:05Z2009-12-09T17:43:05Z<p>Definirely ruby. I myself learned ruby right after php. I look frequently. I even wrote few apps in python. But I always come back to Ruby...</p>