You encounter the error "type object 'datetime.datetime' has no attribute 'datetime'" in Python. What is the likely cause of this error?
A) The datetime module was not imported correctly.
B) You are trying to access datetime.datetime incorrectly.
C) You need to use datetime instead of datetime.datetime.
D) The datetime module does not exist in Python.