--
This guide is for Python developers who want to learn Rust.
Python and Rust are very different.
Python is dynamic, flexible, and garbage-collected.
Rust is static, explicit, and ownership-based.
In Python, you often write code without thinking deeply about memory.
Example:
user = {"name": "Alice"}
another_user = user