Untitled
unknown
plain_text
2 years ago
167 B
32
Indexable
def compare_df(left, right):
return (set(left.columns) == set(right.columns)) & \
(left.count() == right.count() == left.unionByName(right).distinct().count())Editor is loading...
Leave a Comment