I use python and its pandas library, but I run into a problem all the time. During copying through the tutorial, I'm trying to get the version number for multiple libraries, but when I do, I get the following: AttributeError: 'module' object has no attribute '_version_'.
Everything else works fine, but really dislikes it '_version_'. Anything I can leave?
See below for the exact code.
import datetime
import pandas as pd
import pandas.io.data
from pandas import *
pd._version_
AttributeError: 'module' object has no attribute '_version_'
source
share