Python Forum

Full Version: Importing all modules and using it
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
import os
os.path.exists("foo.txt")
Importing star (asterisk, everything) is a Python Worst Practice.
So don't do that.
If run eg Pylint,100 Warnings.
[Image: Lu7DEu.jpg]