Why does trying to use `datetime.strptime` result in " 'module' object has no attribute 'strptime'"?

I'm using strptime to convert a date string into a datetime. According to the linked page, formatting like this should work: >>> # Using datetime.strptime() >>> dt = datetime.str...