We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd13e57 commit 86f0e86Copy full SHA for 86f0e86
pandas/core/series.py
@@ -4630,14 +4630,14 @@ def isin(self, values) -> "Series":
4630
4 True
4631
5 False
4632
Name: animal, dtype: bool
4633
-
+
4634
Strings and integers are distinct and are therefore not comparable:
4635
4636
>>>import pandas as pd
4637
- pd.Series([1]).isin(['1'])
+ pd.Series([1]).isin(['1'])
4638
0 False
4639
dtype: bool
4640
- pd.Series([1.1]).isin(['1.1'])
+ pd.Series([1.1]).isin(['1.1'])
4641
4642
4643
"""
0 commit comments