🌐
Quora
quora.com › How-many-days-does-Python-programming-language-take-to-learn-after-learning-JavaScript
How many days does Python programming language take to learn after learning JavaScript? - Quora
Answer (1 of 2): I think it may be one month because you already learned complexity langugaue like java script python is more flexible less complexicity in the syntax , indentication basing on your skill if you pay attention stick to it you ...
🌐
freeCodeCamp
forum.freecodecamp.org › t › why-should-i-learn-python-if-i-already-know-javascript › 253988
Why should I learn Python if I already know Javascript? - The freeCodeCamp Forum
January 25, 2019 - I’ve been working with javascript for a while now and I’m comfortable with it. I like all the libraries and flexibility that I have with it. (Typescript, Node, Electron, React, etc) I want to eventually start messing around with another language like Python or even Java but I’m not really ...
🌐
Reddit
reddit.com › r/python › how long would it take to learn python for an experienced programmer?
r/Python on Reddit: How long would it take to learn Python for an experienced programmer?
December 25, 2019 -

I've been doing full stack Javascript for a while, I also know C# and C++. I know Python basics from having looked at code etc, after all its very readable but haven't done much coding.

I'll be honest, my current work doesn't really have Python projects, and I really want to learn because 1) its a good thing and I'm sure I will find uses for it, but mainly 2) I want to use it for technical coding interviews.

I really don't want to use C++, C# or god forbid Java (the opposite of terse). In the past I've used ES6 also and its generally fine but some companies have the impression that its not a 'real' language (which is nonsense). Anyway Python is even more terse/readable (well except for lambdas) and has more data structs (like queues, heaps) that are often used in interviews.

Just to make it clear, I'm not trying to 'cheat' or memorize. I want to learn the language but with a focus on solving questions like you see in leetcode vs e.g doing ML or data science. Things like list comprehensions etc seem very useful. JS ES6 and Python seem very similar in many ways so I think this will come down to really understanding the 'Pythonic' way of doing things after learning the syntax etc.

🌐
Afternerd
afternerd.com › blog › how-long-to-learn-python
How Long does it Take to Learn Python? (And Get a Job) - Afternerd
March 11, 2021 - In this post, I will attempt to give you a general estimate of how long it is going to take you if you are an absolute beginner until you get your first job. ... A few years ago, I would’ve said learn Python 3 and Python 2.
🌐
Quora
quora.com › How-long-does-it-take-me-to-learn-JavaScript-if-I-know-Java-python-and-HTML
How long does it take me to learn JavaScript if I know Java, python, and HTML? - Quora
Answer (1 of 4): Java and Python has nothing to do with JavaScript. Infact most of the programming languages have nothing to do with each other except for the syntax (exception maybe Python). If you know the general syntax of programming then you can learn the syntax of any language within a day ...
🌐
Sololearn
sololearn.com › en › Discuss › 2910746 › how-long-does-it-take-to-learn-python-if-you-know-javascript
How long does it take to learn Python if you know JavaScript?! | Sololearn: Learn to code for FREE!
October 24, 2021 - It depends on how serious you are. Actually you can be able to understand python and some other programming language when you have knowledge of JavaScript.
🌐
Reddit
reddit.com › r/learnpython › learning javascript after python
r/learnpython on Reddit: Learning Javascript after Python
October 22, 2021 -

Two things strike me with Javascript as opposed to Python (obviously, caveats apply...)

  1. Learning Javascript to enable the web is far more practical than learning a Python GUI.

  2. All of the extra steps in Javascript when it comes to functional programming, yuck!

Top answer
1 of 5
42
I’m going the ofher way, learning python from scratch as a snr. js stack dev. Don’t mind python but there’s quirks to every language. I generally don’t find the tooling as satisfying in python yet, but I do like the fluency of the language. I like that I write it once and can expect it to do what I think it’s gonna do. I’m also not yet used to indentation mattering as much, not a huge fan but again; quirk of the language. Tips I’d give python devs learning JS: stay the hell away from frameworks until you’re comfortable with the core language, learn es6/typescript. learn by doing, find a project and work out how to spin it up, then find flaws and see what JS has to offer to improve in those areas. you’ll never learn it all, stick to making stuff that works/solves your problem. learn about javascript’s weird and predicable but not expected scoping rules pick up a typed form of JS (typescript/es6 with types) set up eslint with recommended(s) and prettier so you get the style of pretty-good js. learn the es6 way of doing something before the library-laden way. (Like the pyhonic way but for js) spend time on closures, async/await, lambdas, scoping, destructuring and Promise patterns (all, race, allResolved, etc), oh and coercion. look at what your ts/es6 transpiles down to (unminified) to get an idea of how JS does stuff under the hood. learn about tooling (node, npm, nps, jest, nyc, eslint, prettier, webpack/a bundler) learn about number/decimal handling if you plan on doing any math you need to trust (financial), see decimal.js & similar. Run “0.1 + 0.2” if you’re not sure why. learn about all the crazy places you can deploy JS (browser, node, electron, capcitor, etc). If you’re picking a base framework for front-end dev the answer is probably react. The State of JS survey results can guide you on what frameworks and libraries might be worth picking up. Good luck and welcome to ordered chaos.
2 of 5
37
Looping through an array in Javascript for the first time after doing it in Python for months was just, like, whaaaat.
🌐
Reddit
reddit.com › r/learnjavascript › how long it takes to learn javascript if i come from a python background?
r/learnjavascript on Reddit: How long it takes to learn Javascript if I come from a Python background?
September 24, 2021 -

At my job right now I work with Python (intermediate to advanced knowledge) and SQL (advanced knowledge) and some R but I'd like to switch career and learn Javascript.
I wonder how long it takes to learn Javascript (enough to pass jobs interviews) if I study it 3 hours per day and I'd like to know what frameworks should I focus on for better career prospects.

Thanks you!

Top answer
1 of 4
7
Modern JavaScript and Python have a lot in common - for example the iteration protocol, generators, module import syntax, and async/await syntax should feel pretty similar. JS does not have comprehension syntax (e.g. the list, dictionary, set, and generator comprehensions available in Python). It is much more common to use functional programming patterns. Arrow functions in JS are analogous to lambdas in python. JS functions do not have keyword arguments. Instead, it is fairly common for functions to accept an "options" object as their final positional parameter, containing key-value pairs. JS does not differentiate between "items" and "attributes". They are all just properties on an object, accessed with either square brackets obj['propertyName'] or dot notation obj.propertyName. A JS object literal is kind of similar to a dictionary in python, but JS also now has Map and Set classes. JS has a contextual this keyword, instead of a conventionally-named self parameter for object methods. Methods are not auto-bound to objects like they are in python. The this keyword is provided to a method at call-time - for example if you call someObj.someMethod() or someObj['someMethod']() the dot notation and square bracket notation implicitly provides someObj as the value of this inside someMethod. However in the following code: let method = someObj.someMethod; method(); The this keyword will not be someObj - it will either be the global object or undefined depending on if you are using strict mode. Function objects also have call, apply, and bind methods which can be used to explicitly set the value of this. JS does not have magic methods like python has - so you can't override the behavior of builtin operators like you can in python. For example the === operator always compares values by strict equality (same type and value for primitives, referential equality for objects). JS classes do not support multiple inheritance, though multiple inheritance is possible via object prototypes. JS has a for...in loop as well as a for...of loop. The for...of loop is the one that works like for...in in python, which is easy to mix up. JS has both a null primitive and an undefined primitive, as opposed to Python's singular None. Obviously there are syntax differences - python uses a much more minimalist, significant-whitespace syntax, while JS has a more C-like syntax with more brackets, parens, semicolons, etc. And of course there are various other differences, but these are the ones that I think are most likely to trip you up when learning JS coming from a Python background.
2 of 4
4
I mean... it's different for different people, but if you know Python you should be able to pick up js relatively quickly. Maybe a couple months then start applying to jobs? React is probably still the biggest framework and best for job prospects.
🌐
BrainStation®
brainstation.io › career-guides › how-long-does-it-take-to-learn-python
How Long Does it Take to Learn Python? (2026 Guide) | BrainStation®
December 18, 2025 - On average, it can take anywhere from five to 10 weeks to learn the basics of Python programming, including object-oriented programming, basic Python syntax, data types, loops, variables, and functions.
Find elsewhere
🌐
DEV Community
dev.to › kachiic › learn-python-as-a-javascript-developer-422j
Learn Python as a Javascript developer - DEV Community
July 19, 2022 - As a coder, you should always be looking to expand your knowledge. The best way to do this is by learning different coding languages and frameworks. I myself am a Javascript and Python fullstack developer and like most self-taught developers, I started by learning HTML, CSS and Javascript first.
🌐
Reddit
reddit.com › r/learnprogramming › after learning python, html and css to a basic level how long will take to learn js, react etc to become a front end dev?
r/learnprogramming on Reddit: After learning python, html and css to a basic level how long will take to learn js, react etc to become a front end dev?
January 9, 2023 -

Is python similar to javascript will I be able to pick up everything fairly quickly? I have been learning python for a couple of weeks now and I'm slowly gaining an understanding. I plan on sticking to learning html, css and python for a month or two more than try and learn some javascript and react, I actually first started on js but skimmed through html, css quickly and then javascript hit me pretty hard then life got in the way. So I started with python one year later and feel much better, perhaps my original approach was poor. Also eventually I was thinking about full stack so thats why I thought python was quite a good choice for back end.

Thank You.

🌐
freeCodeCamp
forum.freecodecamp.org › t › halfway-through-python-should-i-move-to-js-or-stick-with-python › 55881
Halfway through Python, should I move to JS or stick with Python? - The freeCodeCamp Forum
November 16, 2016 - Hello. Last week I finished my first course. It was a Udacity Nanodegree (introduction to programming) It was very good. I learnt some python, functions and some (mostly theorical) OOP. After that there was a bit of front end teaser, so we learnt a bit of JS, jQuery, the usual.
🌐
DEV Community
dev.to › kachiic › learning-javascript-as-a-python-developer-126g
Learning Javascript as a Python Developer - DEV Community
April 26, 2023 - But if you have a good level of python, all you need to do is wrap your head around the usage as the logic is pretty much the same. The goal of this tutorial is to show you the subtle differences between python and javascript. The best way to learn is practice.
🌐
Coursera
coursera.org › coursera articles › data › data analytics › how long does it take to learn python? (+ tips for learning)
How Long Does it Take to Learn Python? (+ Tips for Learning) | Coursera
October 24, 2025 - How long it takes you to learn Python will depend on several factors, including how much Python you need to know to achieve your desired goal. In general, it takes around two to six months to learn the fundamentals of Python.
🌐
Real Python
realpython.com › how-long-does-it-take-to-learn-python
How Long Does It Take to Learn Python? – Real Python
January 28, 2026 - Data analysis: If you already know Python basics, plan on 2 to 6 months to get comfortable with pandas, visualization, and SQL. Data science and machine learning: Plan on 9 to 18 months on top of your Python skills if you’re starting from ...
🌐
App Academy
appacademy.io › blog › what-programming-language-should-you-learn-after-javascript
What Programming Language Should You Learn After JavaScript? | App Academy
March 13, 2024 - Lastly, Python has a large and active community of developers, meaning there are resources, tutorials, and libraries available to help you learn and solve problems. This can make the learning process easier and provide you with ongoing support as you progress in your Python journey. The Key Takeaway: By learning Python after JavaScript, you can broaden your programming skills, explore new areas of development, and increase your career opportunities in the tech industry because Python is:
🌐
Upgrad
upgrad.com › home › blog › data science › how long it will take to learn python in 2025: your step-by-step guide
Learn How Long It Will Take to Learn Python in 2025
May 28, 2025 - To build web applications, web development fundamentals (like ... JavaScript, and Python integration) may take 2 to 3 months, especially as you move on to Python frameworks like Flask and Django.
🌐
Medium
medium.com › @tayyabaltaf › is-it-fine-to-learn-python-and-javascript-together-58c244ed053c
Is it Fine to Learn Python and JavaScript Together? | by Tayyabaltaf | Medium
August 8, 2023 - As a budding programmer, you may be wondering whether it’s possible to learn two languages at the same time. In particular, you might be considering diving into both Python and JavaScript concurrently. The answer to this is a resounding yes!