๐
Dir built-in function
When we don't know about the package module or method we use the dir() built-in function and this function return the list of module and method.
python
from XYZ import GFHprint(dir(GFH))
When we don't know about the package module or method we use the dir() built-in function and this function return the list of module and method.
from XYZ import GFHprint(dir(GFH))
