Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Import from .py trouble
#1
I'm trying to split my code into separate modules: sprites.py, setting.py, etc. I'm clearly missing something.

from settings import *
print(tile_size)
This doesn't work, though I think it should.
Error:
Traceback (most recent call last): File "C:\Users\owner\Desktop\Python3\DungeonGame\levels.py", line 2, in <module> print(tile_size) NameError: name 'tile_size' is not defined
If I spell the file wrong, like "sttings", I get
Error:
Traceback (most recent call last): File "C:\Users\owner\Desktop\Python3\DungeonGame\levels.py", line 1, in <module> from sttings import * File "C:\Users\owner\AppData\Local\Programs\Thonny\lib\site-packages\thonny\backend.py", line 305, in _custom_import module = self._original_import(*args, **kw) ModuleNotFoundError: No module named 'sttings'
I have all the python files in the same directory and setting.py's first line is "tile_size = 50" Python can see that the file exists but "import" doesn't make it visible.
Reply


Messages In This Thread
Import from .py trouble - by michael1789 - Nov-27-2019, 09:39 PM
RE: Import from .py trouble - by ichabod801 - Nov-27-2019, 09:52 PM
RE: Import from .py trouble - by michael1789 - Nov-27-2019, 10:54 PM
RE: Import from .py trouble - by Ray - Nov-27-2019, 11:16 PM
RE: Import from .py trouble - by michael1789 - Nov-27-2019, 11:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Having trouble with a circula import SuchUmami 2 1,784 Jul-05-2023, 06:28 PM
Last Post: deanhystad
  Trouble with "from…import…as" arbiel 2 3,663 Apr-14-2020, 03:38 PM
Last Post: arbiel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020