Python3を実行する方法(コマンドプロンプト)です
①Python3のソースファイルを作成します
c:\test\test.py
1 | print ( 'test' ) |
②コマンドプロンプトを起動してtest.pyのフォルダに移動します
1 | cd c:\test\ |
③ソースファイルを実行します
1 | python test.py |
Python3を実行する方法(コマンドプロンプト)です
①Python3のソースファイルを作成します
c:\test\test.py
1 | print ( 'test' ) |
②コマンドプロンプトを起動してtest.pyのフォルダに移動します
1 | cd c:\test\ |
③ソースファイルを実行します
1 | python test.py |