python3

python3 3.13.13

High-level dynamically-typed programming language

<rendered-html><p>Python is a remarkably powerful dynamic programming language that is used in a wide variety of application domains. Some of its key distinguishing features include: clear, readable syntax; strong introspection capabilities; intuitive object orientation; natural expression of procedural code; full modularity, supporting hierarchical packages; exception-based error handling; and very high level dynamic data types.</p> </rendered-html>

https://www.python.org
Python Software Foundation License version 2
main program: python3.13programs: -
Platforms (32)
microblazeel-linuxaarch64-linuxarc-linuxi686-linuxmipsel-linuxx86_64-darwinx86_64-windowsarmv6l-linux
View source on NixOS/nixpkgs →

Install

Copy into your configuration

NixOS (configuration.nix)
environment.systemPackages = with pkgs; [
  python3
];
Ad-hoc shell
nix-shell -p python3
Flake (nix run)
nix run nixpkgs#python3