Skip to content
Advertisement

Pythonic type hints with pandas?

Let’s take a simple function that takes a str and returns a dataframe:

JavaScript

What is the recommended pythonic way of adding type hints to this function?

If I ask python for the type of a DataFrame it returns pandas.core.frame.DataFrame. The following won’t work though, as it’ll tell me that pandas is not defined.

JavaScript

Advertisement

Answer

Why not just use pd.DataFrame?

JavaScript

Result is the same:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement