| [`headers`](/commands/docs/headers.md) | `keys` | | | |
| [`help`](/commands/docs/help.md) | `help()` | | | |
| [`insert`](/commands/docs/insert.md) | `dict[\"key\"] = val` | | `map.insert({ 20, 130 })` | `map.insert(\"key\", val)` |
| [`is-empty`](/commands/docs/is-empty.md) | `is None`, `is []` | `isEmpty` | `empty` | `is_empty` |
| [`take`](/commands/docs/take.md) | `list[:x]` | | | `&Vec[..x]` |
| [`take until`](/commands/docs/take_until.md) | `itertools.takewhile` | | | |
| [`take while`](/commands/docs/take_while.md) | `itertools.takewhile` | | | |
| [`kill`](/commands/docs/kill.md) | `os.kill` | | | |
| [`last`](/commands/docs/last.md) | `list[-x:]` | | | `&Vec[Vec.len()-1]` |
| [`length`](/commands/docs/length.md) | `len` | `size`, `length` | `length` | `len` |
| [`lines`](/commands/docs/lines.md) | `split`, `splitlines` | `split` | `views::split` | `split`, `split_whitespace`, `rsplit`, `lines` |
| [`ls`](/commands/docs/ls.md) | `os.listdir` | | | `fs::read_dir` |
| [`match`](/commands/docs/match.md) | `match` | `when` | | `match` |