0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

3.Python基礎

Last updated at Posted at 2025-03-16

シリーズ記事一覧

タイトル リンク
第1回 環境構築
第2回 Python 概要
第3回 Python 基礎
第4回 Pythonで学ぶWebの基本と実践
第5回 Streamlitを使ってみよう
第6回 Streamlitでリアルタイム画像処理
第7回 リアルタイムで顔検出を行ってみよう

Python 基礎

Python 起動方法

Interactive

対話的にPythonを実行する方法で、すぐにコードを入力し結果を確認できます。

ターミナルやコマンドプロンプトで以下のコマンドを入力することで起動できます。

python

起動後の画面(例):

Python 3.10.0 (default, Oct  4 2021, 14:59:43)
[GCC 10.2.1 20210110] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

>>> はPythonのプロンプトを表し、ここにコードを入力すると実行されます。

pythonの対話モードから抜ける場合にはexit()を実行してください。

>>> exit()

また、ブラウザ上で実行できるGoogle ColabやJupyter Labなどもあります。

Non-Interactive

Python スクリプト(.py ファイル)を実行するモード。
スクリプトの内容をすべて書いておき、一気に実行します。

  1. 以下コマンドをターミナルで実行し、メモ帳を開きます。
    notepad script.py
    
  2. 以下内容を貼り付け、保存します。
    name = "Python"
    print(f"Hello, {name}!")
    
  3. ターミナルに戻り、pythonを実行します。
    python script.py
    
    実行結果:
    $ python script.py
    Hello, Python!
    

参考資料

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?