DEV Community

Discussion on: Should I go with Python, Java or Ruby in 2018?

Collapse
 
bmadusudanan profile image
Madusudanan.B.N

It really depends upon what you want to do with it.

Python is good for data science/machine learning, prototyping stuff. Dynamic typing might bite you once you scale to a larger team.

Between Python and Ruby - I would choose Python. It's much better in many aspects and has a larger community of developers. And you are not losing much.

Java is a whole another beast. It is used by a number of enterprise(read big) organizations. There is a reason why Linkedin, Amazon, Google etc., use Java heavily. It scales from one machine to literally thousands of machines(distributed) with a rock solid runtime(JVM).

Some general pointers.

  • Python is probably the best language to learn programming.
  • If you are doing consultant work then I would recommend Python. Much less hassle to setup and maintain.
  • Python is actually as old as Java. So it's not exactly a modern one, but a language designed for a different purpose.
  • Static vs Dynamic typing (my own blog post)
  • Java as a language is getting modernized, but it's going pretty slowly. Remember that there are other languages on the JVM. Kotlin is one which I would recommend learning if you have any plans to get started with Android development.
Collapse
 
tobias_salzmann profile image
Tobias Salzmann

+1 For Kotlin, especially from a professional point of view.
Kotlin is specifically designed to give Java users a language that's conceptually very similar, but has a decent share of modern language features. Being made by Jetbrains, the company behind IntelliJ Idea, you also get stellar editor support for free.
Since it's essentially a superset of Java, you'll be able to derive your Java Skills from learning Kotlin.

My personal go-to language on the JVM is Scala. Some of it's advanced features need to be handled with care but It allows to write a very practical mix of functional and object oriented code that keeps me most productive. It has excellent libraries and frameworks to tackle complex problems.

To tie that into your original question:
I would not recommend to pick up Java. While it introduced lambdas with Java 8, it suffers a lot of the need to be backwards compatible, and is progressing very slowly, as mentioned. There's a high chance that you will need to write Java code at some point, but with Kotlin and Scala, there is little reason why you should do that on your own time.

More than learning languages, I recommend picking up concepts. If you get the chance, pick up functional programming while you're still at university.

Collapse
 
bmadusudanan profile image
Madusudanan.B.N

My personal favourite is Scala too. But its slightly complicated from a beginner's perspective. As you said, concepts are more important. I learnt Scala and when Kotlin came out I was already familiar with 90% of its features.

Java is moving slowly, but hey enterprise companies move a lot slower as well. They don't adapt to newer Java language features as they come out. You can be polyglot if you learn the concepts and with Java/Kotlin/Scala, it is a lot easier since they all target the JVM.