Rust vs Python book presents common code blocks written both in idiomatic Rust and Python.
The book is indexed at rust-indexed.com
Read line from stdin
Rust
Python
line = input("Type something")
Print formatted string
Rust
Python
x = 5
print(f"Variable x equals to {x}")
Random number in range
Rust
Python
import random
n = random.randint(0, 10)
String to int
Rust
Python
x = "1024"
i = int(x)
Exit with code
Rust
Python
import sys
sys.exit(255)
Read command line arguments
Rust
Python
import sys
args = sys.argv # list
Enumerate string
Rust
Python
for i, ch in enumerate(s):
...
Enumerate vector
Rust
Python
for i, element in vector:
...
Print line separator
Rust
Python
print("-" * 80)
Map vector
Rust
Python
v = [1, 2, 3];
new_vec = map(num * 2, v)
Ternary operator
Rust
Python
a = 5
x = 12 if a > 10 else 30;
Get min and max of two values
Rust
Python
max_v, min_v = max(10, 50), min(10, 50)
Read/write from/to file
Rust
Python
with open("foo.txt", "w") as f:
f.write("Hello, world!")
content = open("foo.txt").read()
Get current timestamp in seconds
Rust
Python
import time
now = int(time.time())
Async sleep
Rust
Python
import async
await asyncio.sleep(2)
Increment dict value
Rust
Python
map = {}
map[50] = map.get(50, 0) + 1
Push value to dict of vectors
Rust
Python
map = {}
map.setdefault(50, []).append(0);
Measure execution time
Rust
Python
import time
start = time.time()
# ...
duration = time.time() - start
Read environment variable
Rust
Python
import os
if os.environ.get("MY_ENV_VAR"):
value = os.environ["MY_ENV_VAR"]
print(f"MY_ENV_VAR={value}")