RUBY VS PYTHON | FULL COMPARISON IN 5 MIN

RUBY VS PYTHON | FULL COMPARISON IN 5 MIN

Jelvix | TECH IN 5 MINUTES

3 года назад

59,013 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Jelvix | TECH IN 5 MINUTES
Jelvix | TECH IN 5 MINUTES - 13.07.2023 15:50

Tell us your opinion on Python vs Ruby. What features make a winner here? 🧐

Ответить
Tony Crenshaw's Latte
Tony Crenshaw's Latte - 15.10.2023 09:31

I find Ruby to be just as readable as Python, if not more.
The only reason to use Python over Ruby is the vast number of libraries that Python has available. It's a shame that Ruby doesn't enjoy the same kind of library support that Python does.

Ответить
Mw
Mw - 02.08.2023 09:03

RUBY is way better . Python has no closing block and I constantly have to deal with the silly indentations and f strings

Ответить
fr0zeneye100
fr0zeneye100 - 14.07.2023 14:59

By the time I watched an overly simple video saying basically not much at all Uhm I learnt one of the frameworks within the same time almost. These videos are ok for people which have no clue about programming and curious but just throwing lots of jargon around… waste of time to watch. Explain to me how the models between the two are different even though they have similar way of thinking. Why is ruby better for high traffic and python high data? How does the database affect that? Seems more like throwing poop at wall and hoping something sticks…

Ответить
VK
VK - 06.06.2023 23:22

Ruby: Poor mans python no one uses

Ответить
UROOJ FATIMA
UROOJ FATIMA - 31.10.2022 19:36

I love python

Ответить
Ruby on Olympus
Ruby on Olympus - 05.10.2022 21:17

Thanks a lot for this video!

Ответить
Tim Kretschmer
Tim Kretschmer - 25.08.2022 18:45

you read ruby like a book.

Ответить
Jacob Paul
Jacob Paul - 28.06.2022 19:36

Python has large community which gives it an advantage but ruby on the other side holds advantage on readability, easy to learn, has strong oop concept which will be handy while implementing something with design patterns concepts

Ответить
Assaf Goldstein
Assaf Goldstein - 03.06.2022 07:01

one of the worst I saw this week.

Ответить
Nikita Shepel
Nikita Shepel - 11.04.2022 16:18

Ruby has weak point documentation and poor community

Ответить
GeekMoment Ninja
GeekMoment Ninja - 18.03.2022 20:07

This is such a bad comparison and would be misleading to a newbie programmer. ( Also very bias towards python ).

Ответить
Bálint Áts
Bálint Áts - 20.02.2022 02:53

Warning! Not a single line of code is shown in this video.

Ответить
BJM Graphics
BJM Graphics - 16.02.2022 08:35

Ruby has a solid future. It’s easy to learn, very capable and support will grow. It has a high pay scale for jobs and because fewer people knows Ruby that would put a Ruby programmer in high demand for employers looking for Ruby skilled developer. Visual Basic started small as Basic and who knew that C# would end up being a popular language to make games when Microsoft employees made it? Competition is good and Ruby can fit in just fine for web applications which will soon out pace traditional tangible software. Too many people knows Python.

Ответить
shyam Nandan Prasad
shyam Nandan Prasad - 04.12.2021 10:47

I think to learn both

Ответить
chase
chase - 06.11.2021 00:38

Python better duh

Ответить
Beto Warrior
Beto Warrior - 14.08.2021 06:10

I know both languages and the direct comparison presented here doesn't make sense in most points. For example: reusability depends on the person writing the code, not the code itself.

Ответить
Robin Lioret
Robin Lioret - 03.07.2021 09:13

"ruby reusability is complicated"
Ruby:
require './folder/script'

Python:
Create ugly __init__.py file in each folder
import os, sys
currentdir = os.path.dirname(os.path.realpath(__file__))
parentdir = os.path.dirname(currentdir)
sys.path.append(parentdir)
from module_in_other_folder import a

yeah, much better...

Ответить