There are a few I’m aware of:
- Rust-style
use(multiple imports per statement, renaming items usingas) - Java-style
import(single import per statement, no renaming (afaik)) - Zig-style
let xlib =(imports as assignments) - C-style
(no importing, just pastes the code of the named file)


Yeah C# is my favorite, followed by how python does it. Both are very good.
I have so little Python experience I didn’t even mention it, but I remember enjoying that too.
Its s nothing burger so its very good.
What I don’t like is doing it 100 times to pull in a main.py but there’s ways of getting around it. Its not the languages fault but its kinda what everyone does.