Deep LearningPython

【Python】Pythonのスクリプトファイル

Python

Pythonのスクリプトファイルを紹介します。

hello.pyファイルを作成し、print(“hello”)を書いて保存します。

 
<div class="content">
  <p>コマンドプロンプトでコードを含むファイル名を入力するだけでPythonスクリプトを実行することができます。</p>
 <p>作成したhello.pyファイルがある場所に移動して<b class="point">python hello.py</b>コマンドを実行します。</p>
  </div>
<p>作成したhello.pyファイルがに入力したhelloが出力されることが確認できます。</p>
  </div>
%python hello.py
hello