__loader__
Dunder AttributePython 2.0+Expert
The loader object that loaded the module
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
Learn by Difficulty
Quick Example
python
# __loader__ print("Demonstrating __loader__") print(type(object).__dict__.keys())
__loader__ is a special attribute that the loader object that loaded the module.
Try in PlaygroundTags
oopintrospectioncore