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?

Python ライブラリとかimportの話 その1(自分用)

Posted at

Python始めたての頃、ライブラリやimportの意味がよくわからなかったので、あの時の自分のために書き残しておく

1.importとは

スクリプトの冒頭によく出てくる呪文のことである

example.py
import numpy as np

これはnumpyというライブラリをnpという名前で使いますみたいな意味である。

2.まとめ

ライブラリ:便利機能集(numpyは計算に特化した便利機能集である)
import:ライブラリを装備するイメージ(使える状態にする)
as:当該スクリプト(example.py)の中においては、np = numpy と解釈してプログラムを進めて欲しいというお願いと合意の証

次回はimportの応用編みたいなものを書くことにする。

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?