0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Python勉強記録 #1 モジュール

Posted at

モジュールとは

Pythonにはモジュールという便利なものがあります。
モジュールというのは、「py」という拡張子が付けられたテキストファイルのことで、この中にPythonを使って書かれた関数などを格納するものらしい。
例えるなら、「米」と「水」を与えたら「炊き立てのご飯」が作れる「炊飯器」のことをモジュールという…ような感じ?

モジュールの読み込み

  • Numpy 数値計算を高速に処理するモジュール
  • Pandas テーブル(表)データのデータ操作を行うモジュール
  • Matplotlib.pyplot データの可視化を行うためのモジュール

モジュールはいくつもありますが、AIではこれらを多用します。
実際に読み込む時は、

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

のように書きます。
as np と書いているのは、あとでモジュールを呼び出す時に短い方が書きやすいかららしい。
np と書くのは通例で、他もどのように略すかは通例で決まっているようです。

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?