Why this python program is not working? AttributeError: 'module' object has no attribute

后端 未结 4 739
悲&欢浪女
悲&欢浪女 2020-12-11 03:13

I wrote a very simple python program.

#!/usr/bin/env python
import random
x = random.uniform(-1, 1)
print str(x)

I run this from command pr

相关标签:
4条回答
  • 2020-12-11 03:32

    Don't name your program as an Library. And just as a Tip: You don't need an String storing something and printing it out just after generating it.

    #!/usr/bin/env python
    import random
    print(random.uniform(-1, 1))
    

    This will work fine too ;)

    0 讨论(0)
  • 2020-12-11 03:45

    Don't name your file random.py, it is importing itself and looking for uniform in it.

    It's a bit of a quirk with how Python imports things, it looks in the local directory first and then starts searching the PYTHONPATH. Basically, be careful naming any of your .py files the same as one of the standard library modules.

    0 讨论(0)
  • 2020-12-11 03:45

    Your problem is that you named your test program "random.py". The current working directory is on the module search path before anything else, so when you say "import random", it imports your own test program rather than the standard library random.

    Rename your test program -- or just take the .py suffix off -- and it should work.

    0 讨论(0)
  • 2020-12-11 03:47

    The solution to your problem is renaming your file (random.py) to something other than Python built-ins, standard libraries, reserved keywords etc.

    However I strongly recommend you take Python Tutorial, before trying any other tutorial or book. You especially need to learn more about Python scopes and namespaces.

    0 讨论(0)
提交回复
热议问题