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ターミナルで、次のコマンドを実行できます。
import random random.randint(1,6)
予想通り、数字が出ます。ただし、このスクリプトをrandom.pyとして保存すると、実行に失敗します。
import random print random.randint(1,3)
「AttributeError:'module'オブジェクトには属性'randint'がありません」と表示されます
スクリプトを random.py 以外の名前で保存してみてください。それはおそらくそれ自体をインポートしています。再試行する前に、CWD の random.py の古いコピーを削除してください。