Python

f7bbae11 anonymous 2011-02-27 08:42
>>e5520856

ああ、しかも、モジュールを変数に格納できる。

>>> import math
>>> math.pi
3.1415926535897931
>>> m = math
>>> m.pi
3.1415926535897931
>>> del math
>>> math.pi
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'math' is not defined
>>> m.pi
3.1415926535897931

C#のusingなどよりずっと使える。

Top of this page. | <<last

limit: 15360KB

(Python/85/0.0MB)

Powered by shinGETsu.