Tag

#python

5 articles tagged #python. See all tags →

Synchronous vs Asynchronous Programming, Explained
Tech··8 min

Synchronous vs Asynchronous Programming, Explained

Synchronous code waits, asynchronous code moves on. That one difference decides whether your server handles ten users or ten thousand. Here is what blocking, event loops, and async/await actually mean, and when the complexity is worth it.

asyncconcurrencyjavascript
Compiled vs Interpreted Languages Explained
Tech··8 min

Compiled vs Interpreted Languages Explained

Everyone learns that C is compiled and Python is interpreted, then discovers Python has a bytecode compiler and JavaScript gets compiled to machine code at runtime. The clean split is mostly a lie. Here is what is actually going on.

compilersinterpretersjit
Learning Python When You Already Know Java
Tech··7 min

Learning Python When You Already Know Java

Java to Python is one of the more common transitions in the industry, and it’s mostly easy. The places it’s not easy are the places where Python’s flexibility produces patterns that look wrong to a Java brain.

pythonjavaprogramming
Python vs Java Syntax: A Side-by-Side
Tech··6 min

Python vs Java Syntax: A Side-by-Side

Java is verbose and explicit. Python is terse and dynamic. Most of what you actually need to know to switch between them fits in one comparison page.

pythonjavaprogramming