A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/pandas-dev/pandas/issues/10083 below:

Index string ops ignores the order · Issue #10083 · pandas-dev/pandas · GitHub

s = pd.Series(['A', 'B'])
'x' + s
#0    xA
#1    xB
# dtype: object

s + 'y'
#0    Ay
#1    By
# dtype: object
idx = pd.Index(['A', 'B'])

# NG
'x' + idx
# Index([u'Ax', u'Bx'], dtype='object')

# OK
idx + 'y'
# Index([u'Ay', u'By'], dtype='object')

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4