10
10

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 5 years have passed since last update.

2015-11-26 python > モジュールの関数一覧を表示する > import math > dir(math)

Last updated at Posted at 2015-11-26

Python Programming Tutorial - 40 - Getting Module Info
https://www.youtube.com/watch?v=a9sTtnCwuPk&list=WL&index=38
1:24頃

>>> import math
>>> dir(math)
['__doc__', '__name__', '__package__', 'acos', 'acosh', ...]

import後にdir()で関数を見ることができる。

10
10
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
10
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?