I tried the below code in Anaconda Prompt
import <module name>
print(<module name>.__version__)
print(<module name>.version.VERSION)
print(<module name>.version)
but get AttributeError: 'module' object has no attribute 'version' for each print.
Is it be'cos datetime, math, win32com.client are in-built library in Python? So how do I find their version?
Thank you