Python

【Python】PythonのNumPy配列の次元

PythonのNumPy配列の次元を紹介します。 PyCharmを利用します。下記のリンクてダウンロードできます。  PyCharm PyCharmをプロジェクトを作成し設定に移動します。numpyをインストールします。  0次元配列 import n

Read More
Python

【Python】PythonのNumPy配列

PythonのNumPy配列を紹介します。 PyCharmを利用します。下記のリンクてダウンロードできます。  PyCharm PyCharmをプロジェクトを作成し設定に移動します。numpyをインストールします。  NumPyは配列を扱うために使われます。N

Read More
Python

【Python】Pythonのクラス

Pythonのクラスを紹介します。 class.pyファイルを作成し、下記の内容を書いて保存します。 # クラス名 class Person: # initのメソードまたコンストラクタ def __init__(self, name): self

Read More
Python

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

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

Read More
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の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 (cla

Read More