DEV Community

Cover image for Python vs Ruby
amigos-maker
amigos-maker

Posted on

Python vs Ruby

Thinking about enrolling into programming courses?

Congratulations for making this decision; it is an amazing and a fun road. There are so many programming languages out there; as a matter of fact there are thousands of them, if not hundreds.

The first and very useful languages are Ruby and Python. They are useful and almost similar in many aspects but they are quite different in many ways.

The answer to the question of which one between the two is better lies in the field and profession where you look forward to pursue.

python vs ruby

So we ask ourselves, how different are they? We can tell their differences by looking at some of these few aspects.

Community

Both python and ruby command huge communities, each of which determine the direction that each of these languages take. They also determine updates and the way each software is built.

Python has been used in so many fields of academic uses for example in machine learning and for this reason it continues to thrive with this magnitude.

Python commands a larger community than ruby which could explain the reason it is installed in almost every Linux computer by default. In the terminal you can just type:

    ➜  ~ python3
    Python 3.7.3 (default, Oct  7 2019, 12:56:13) 
    [GCC 8.3.0] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 
Enter fullscreen mode Exit fullscreen mode

For this reason, it is known to be the perfect language for using with Linux servers which are known to be the most preferred to servers in the world.

Since its introduction into the market in 2005, ruby has been widely used in web development and has experienced more diverse popularity to date. However, it has not come any closer to popularity and usage of python.

Language

The two languages may seem similar in many ways but when it comes to their usage in solving problems, they are in two different worlds. It is important to note however, none of the two is better than the other. They both focus on different things;

Ruby stresses on flexibility of the language while python pays more attention to directness and readability of the language.

#!/usr/bin/ruby
# Ruby count to 10

$i = 0
$num = 11

while $i < $num  do
   puts("Inside the loop i = #$i" )
   $i +=1
end
Enter fullscreen mode Exit fullscreen mode

versus the code in Python

#!/usr/bin/python
# Python count to 10
i = 0
num = 11
while i < num:
    print("Inside the loop i = " + str(i))
    i = i + 1
Enter fullscreen mode Exit fullscreen mode

For example, ruby programming language has been used to build Ruby on Rails web framework while the python programming language has been used in the making of Django web framework.

Ruby has been designed in a unique way that makes it desirable for people who are new to programming (Ruby tutorial) . It is flexible in a way that allows programmers to perform so many small tricks when making a web.

While this may seem and feel magical, at times it becomes a real problem especially when they trying to trace the source of bugs. The same flexibility that makes it easy in web designing also makes it hard for debugging.

Python on the other hand takes a different approach when it comes to development (Python tutorial). It is basically aimed at making everything visible to a programming student, unlike ruby, which is primarily aimed at making things elegant.

Python bypasses this elegance when designing a web but it becomes so easy to work with, when it comes to performing tasks such as coding and debugging effectively.

Web frameworks

The process of learning how to design modern web applications is not easy. Thanks to ruby, it is now an easy and fun encounter since it encompasses everything you need to learn in order to achieve this; by use of ruby rails.

This is open source software, which means it is not only free but it also makes it possible for programmers to make it even better by contributing codes to it.

Research shows that more than 5,000 people have already contributed codes to rails; hence you too have a chance to become one of those. Ruby operates on a repository known as rubygems.

Python Django

Python on the other hand relies on Django as its web framework. This framework encourages clean and pragmatic fast web development and design.

It alleviates much of the long processes of web development, hence making if a faster option when it comes to developing applications and websites.

Unlike with ruby on rails, Django pays more attention to security, probably the reason it is more popular among programmers. Just like ruby on rails, it is also an open source software which means it is free and you can contributes codes to it, to make it even better.

Python Web Frameworks

Except for Django, Python has many other web frameworks like Flask, Bottlepy and others.

The advantage they have over Django is that they are more lightweight. You can quickly fire up an app, add whatever database you want (SQL queries, ORM or other) and get started faster.

Ruby Rails

The rails framework of ruby makes it possible to abstract and simplify common repetitive tasks, hence making it easier when developing websites and applications.

It has been known to rely on a key principle known as convention over configuration which means that ruby on rails comes with a set of conventions offloads the burden a programmer spending so much time trying to configure files in order to get a setup.

Examples of the websites that have been made using ruby include; Airbnb, Github, Twitter, Shopify, Apple, Groupon among many others.

Python is a high level general purpose and high level programming language that allows you to develop so many desktop GUI applications and since it is also a high level language, it focuses on core functionality by allowing you to bypass some tasks that would otherwise make web development so challenging.

In addition to the syntax rule, it makes the applications readable and maintainable. National Geographic, Google, Mozilla Firefox, Pinterest, Washington Post and Instagram are some of the many renowned websites that have been made using python as a programming language.

final thoughts

Final thoughts

The choice of either of the two languages will be determined by the industry where you intend to use it. If you are in an industry that requires usage of ruby, then ruby is choice.

If you are in a profession that requires usage of python, then python is your choice. I recommend that you learn the two languages since both of them allow you to perform just any task, only that they are applied in different fields of profession.

If you are planning to be in a field that concentrates on web applications, then you might want to consider ruby on rails. If you are in a profession that heavily relies on data analytics, then you might want to pay much attention to python.

Related links:

Top comments (2)

Collapse
 
piperymary profile image
Mary • Edited

Hey, thanks for the links and structured information. I also created a short review of these two languages Ruby and Python and compared them by such canons as uses cases, philosophy and others. Maybe it can be a good additional for other readers

Collapse
 
paulcook159 profile image
Paul Cook

Thanks for sharing useful and informative article. Ruby and Python, both the languages were incepted in the mid-90s, with different philosophies, in order to address needs in the programming community. Both the languages are dynamic, flexible and object-oriented and have different set of functionalities. Therefore, which language is better isn’t a question of capability rather an alignment of features & functionalities to your project requirements. I found one infographic check out here bit.ly/3a5yjiG