Python Forum
How many languages do you use. - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Forum & Off Topic (https://python-forum.io/forum-23.html)
+--- Forum: Bar (https://python-forum.io/forum-27.html)
+--- Thread: How many languages do you use. (/thread-24614.html)



How many languages do you use. - Jan_97 - Feb-23-2020

One thing that I often wonder about when I meet other people who have programming as a job/hobby is how many programming languages do you use? Programming is very wide and different needs require different skillsets, so many people who have worked on different things in their lifetimes has often been through multiple languages. How many do you use/have used? Would you consider it a benefit to know more than one language? I personally only use two langues (Python,SQL) but i am very ineficcient in python and SQL i use at work so I know a little bit more on that one.


RE: How many languages do you use. - Larz60+ - Feb-23-2020

I have used several hundred languages over my career (started in 1968).
Usually one main language (currently Python) and several supporting languages like SQL, JavaScript, css, html, etc.


RE: How many languages do you use. - metulburr - Feb-24-2020

I started about 10 years ago. I have always been a hobbyist programmer. I have used C/C++, Bash, Python, CSS, HTML, Java, Javascript, and PHP. Out of all of them, i would say i am surely strongest in Python as i use that the most. I still use CSS, HTML, Javascript, but that is mostly because i am scraping websites with python.


RE: How many languages do you use. - jim2007 - Feb-24-2020

Probably at any given time, I’d expect a professional developer to at least use say three languages - the main language they program in, something for data management (SQL or similar) and a scripting language to do system tasks like deployments.

Beyond that most people will need to do a little of a couple of other things in the working week - maintenance, supporting the main task: web developer doing some CSS, HTML etc.


RE: How many languages do you use. - nilamo - Feb-24-2020

Currently, I use C#, ms-sql, html, and javascript daily at work. Sometimes, also a little python at work, shell scripting (bash) and css.

At home, I do a lot more python, and some (Unreal Engine flavored) c++.


RE: How many languages do you use. - ndc85430 - Feb-24-2020

Of course it's beneficial to know more than one languages - there's a lot that's similar between languages, but the differences help you to grow as a developer.

I work in Scala but tend to do personal projects in Kotlin (though there are probably more similarities between the two than differences). I tend to use Python for some automation/data processing tasks, though I was a Python developer for a couple years, so these days I want to do those tasks more in Clojure. Sometimes I'll also write Bash scripts, but think I prefer a more fully featured programming language in general, so would default to Python or Clojure.