Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 413 Bytes

File metadata and controls

23 lines (13 loc) · 413 Bytes

--

Rust for Python Developers

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.


Why Rust Feels Strange After Python

In Python, you often write code without thinking deeply about memory.

Example:

user = {"name": "Alice"}
another_user = user