Untitled

 avatar
unknown
plain_text
a year ago
167 B
29
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