SyntaxFix
Write A Post
Hire A Developer
Questions
A list comprehension is your best bet for the most Pythonic (and fastest) way to do this:
[int(i.days) for i in (df.B - df.A)]
If your columns aren't in datetime format. The shorter syntax would be: df.A = pd.to_datetime(df.A)
df.A = pd.to_datetime(df.A)