To check what are the functions and attributes available in a module: -use dir() function -Example: print(dir(random)) print(dir(math)) To what does a function of a module does: (Description) -use help() function -Example: print(help(random.randint)) print(help(math.sqrt))