$ python --version Python 3.12.3 ※Arch Linux 2024/06/初旬時点だとこう出てくる。 $ python >>> (なんらかのpython文法打ち込み可能)
$ nano hello.py #!/usr/bin/env python print("Hello, world!") $ chmod u+x hello.py $ ./hello.py