# dir(): The dir() function returns a list of all the attributes and methods (including dunder methods) available for an object. It is a useful tool for discovering what you can do with an object x = ...
#A module is a file containing Python code (functions, variables, etc.) that can be imported into other scripts. #Creating a Module #Create a module by saving Python ...