Stack Exchange
Stack Overflow
Questions
Tags
Users
About
Stack Overflow
Public
Questions
Tags
Users
About
What does an asterisk(*) after import mean in python?
Asked
Sep 17 '22 at 05:05
Active
Sep 17 '22 at 05:08
Viewed
29 times
0
What does an asterisk(*) after import mean in python?
code:
from lds_gnn.utils import *
python
edited Sep 17 '22 at 05:08
Bill Lynch
80,138
16
128
173
asked Sep 17 '22 at 05:05
user20017382
1
import all module variables, classes, functions etc. or all defined in ``__all__ `` tuple if exists
–
sergelab
Sep 17 '22 at 10:22
0 Answers
0