my_set = {1, 2, 3}
# display help information on a object
print(help(my_set))
>>> import math
>>> help(math.tan)
Help on built-in function tan in module math:
tan(x, /)
Return the tangent of x (measured in radians).
help(fun_name)
// example
help(print) tells everything about print function