"Windows embeddable package"は、他のアプリケーションの一部として動作させるための、最小の環境です。The embeddable package - 4. Using Python on Windows — Python 3.x documentation
既定では%LOCALAPPDATA%\Programs\Python\PythonVersionNumberにインストールされます。Why is Python for Windows not installed in %PROGRAMFILES% ("C:\Program Files")? - Super User
インストール時のオプション「Compile .py files to byte code after installation」をチェックすることで、インタプリタがわずかに高速化されます。python - Should I "Compile .py Files to Byte Code after Installation"? - Stack Overflow
ストアアプリでは、64bit版だけの提供となります。Python Software Foundation - Microsoft Apps
The Microsoft Store package - 4. Using Python on Windows — Python 3.x documentation%USERPROFILE%\AppData\Local\Microsoft\WindowsAppsにインストールされます。
Python 3には後方互換性がありませんが、それが問題とならないならばPython 3を用います。
コマンドプロンプトを起動し、Pythonのインストール ディレクトリにあるpython.exeを実行します。2. Using the Python Interpreter — Python 3.x documentation
C:\Python3*>python Python 3.*.* Type "help", "copyright", "credits" or "license" for more information. >>>
終了するにはCtrl + Zを押下するか、exit()
と実行します。
起動しようとしたときに応答がない、もしくはMicrosoft Storeアプリが起動するならば、
C:\where python
としてファイルのパスを確認します。Pythonを実行しようとしたらMicrosoftStoreに飛ばされた件 #Python3 - Qiita
スタートメニューの[IDLE (Python)]を実行するか、インストールディレクトリにあるLib\idlelib\idle.pywを実行します。