Python

【Python】Pythonのfunction(関数)

Pythonのfunction(関数)を紹介します。 ターミナルでPythonのinteractive mode(対話モード)を起動します。 % python Python 3.7.7 (default, Mar 10 2020, 15:43:33) [Clang 11.0.0

Read More
Python

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

Pythonのスクリプトファイルを紹介します。 hello.pyファイルを作成し、print("hello")を書いて保存します。   <div class="content"> <p>コマンドプロンプトでコードを含むファイル名を入力するだけでPythonス

Read More
Python

【Python】Pythonのfor文

Pythonのfor文を紹介します。 ターミナルでPythonのinteractive mode(対話モード)を起動します。 % python Python 3.7.7 (default, Mar 10 2020, 15:43:33) [Clang 11.0.0 (clang-

Read More
Python

【Python】Pythonのif文

Pythonのif文を紹介します。 ターミナルでPythonのinteractive mode(対話モード)を起動します。 % python Python 3.7.7 (default, Mar 10 2020, 15:43:33) [Clang 11.0.0 (clang-1

Read More
Python

【Python】Pythonの変数

Pythonの変数を紹介します。 ターミナルでPythonのinteractive mode(対話モード)を起動します。 % python Python 3.7.7 (default, Mar 10 2020, 15:43:33) [Clang 11.0.0 (clang-11

Read More
Python

【Python】Pythonのリスト(配列)

Pythonのリスト(配列)を紹介します。 ターミナルでPythonのinteractive mode(対話モード)を起動します。 % python Python 3.7.7 (default, Mar 10 2020, 15:43:33) [Clang 11.0.0 (cla

Read More
Python

【Python】Python 変数

Pythonのを変数を紹介します。 ターミナルでPythonのinteractive mode(対話モード)を起動します。 >>> x = 2  #初期化 >>> print(x) # xを出力 2 >>> x = 98  # 代入 >>> print(x) 98

Read More
Python

【Python】Pythonのデータ型

Pythonのデータ型を紹介します。 ターミナルでPythonのinteractive mode(対話モード)を起動します。 % python Python 3.7.7 (default, Mar 10 2020, 15:43:33) [Clang 11.0.0 (cl

Read More