diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index a0e3168f3bc6f..582bdfef2f750 100644 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -187,6 +187,10 @@ def iloc(self) -> _iLocIndexer: out-of-bounds, except *slice* indexers which allow out-of-bounds indexing (this conforms with python/numpy *slice* semantics). + It is also worth noting, iloc converts all elements returned into the same + pandas dtype and all numeric dtype conversions follow the numpy promotion + rules. + See more at :ref:`Selection by Position `. See Also