![]() |
Importing all modules and using it - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Importing all modules and using it (/thread-12514.html) |
Importing all modules and using it - rohitnirantar - Aug-28-2018 from os import path path.exists("foo.txt") Above code works fine. But lets say I want to import all modules in OS by from os import * how can i use path.exists here to verify file exists? RE: Importing all modules and using it - gontajones - Aug-28-2018 import os os.path.exists("foo.txt") RE: Importing all modules and using it - snippsat - Aug-28-2018 Importing star (asterisk, everything) is a Python Worst Practice. So don't do that. If run eg Pylint,100 Warnings. ![]() |