library-python
library-python copied to clipboard
episode 01 - articles_df.__class__
Is it useful to show the alternative way of accessing the type here? Not sure how it fits into the lesson.
type(articles_df)
# this does the same thing as the above!
articles_df.__class__