Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python の Random モジュールの関数 random.random を使用できません。モジュールの関数を使用しようとすると、次のようになります。
import random x = random.random x <built-in method random of Random object at 0x02452D40>
この線
x = random.random
x変数を関数オブジェクトに割り当てるだけrandom.randomです。実際に関数を呼び出したいと思うかもしれません。
x
random.random
x = random.random()