In [ ]:
import pandas as pd

In [ ]:
cast = pd.DataFrame.from_csv('../data/intro/cast.csv.gz', index_col=None)

In [ ]:
cast.head()

In [ ]:

  • How many actors/actresses are credited in the movie Inception?

In [ ]:


In [ ]:

  • What are the names of the 4 leading character in the movie Inception and who plays them?

In [ ]:


In [ ]:

  • How many people have played a role called "The Stranger"?

In [ ]:


In [ ]:

  • How many movies starts with C?

In [ ]:


In [ ]: