Untitled

mail@pastecode.io avatar
unknown
python
17 days ago
113 B
2
Indexable
Never
# Old behavior
df.prod()  # Would ignore non-numeric columns
# Future behavior
df.prod()  # Raises TypeError
Leave a Comment