| [`du`](/commands/docs/du.md), [`ls --du`](/commands/docs/ls.md) | `shutil.disk_usage` | | | |
| [`each`](/commands/docs/each.md)<br />[`for`](/commands/docs/for.md) | `for` | `for` | `for` | `for` |
| [`exit`](/commands/docs/exit.md) | `exit()` | `System.exit`, `kotlin.system.exitProcess` | `exit` | `exit` |
| [`http get`](/commands/docs/http_get.md) | `urllib.request.urlopen` | | | |
| [`first`](/commands/docs/first.md) | `list[:x]` | `List[0]`, `peek` | `vector[0]`, `top` | `Vec[0]` |
| [`format`](/commands/docs/format.md) | `format` | `format` | `format` | `format!` |
| [`from`](/commands/docs/from.md) | `csv`, `json`, `sqlite3` | | | |
| [`get`](/commands/docs/get.md) | `dict[\"key\"]` | `Map[\"key\"]` | `map[\"key\"]` | `HashMap["key"]`, `get`, `entry` |
| [`group-by`](/commands/docs/group-by.md) | `itertools.groupby` | `groupBy` | | `group_by` |
| [`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` |