This blog is an introduction to Python, and it assumes that you have a good knowledge of JavaScript as a language already. I will cover a lot of the basics we use to write code every day, and how they will look in Python compared to JavaScript. This is not to see if one language is better than the other, but rather a resource to aid JavaScript developers who want to start coding in Python for the first time. It is not comprehensive, but I do hope it helps get your foot in the door.
Python typically uses snake_casing instead of camelCasing, and has no variable declaration keywords. We can simply say something like:
my_name = 'dev'
num = 24
Enter fullscreen mode






