You can do this in several ways. For series objects, you can simply pass in your preferred index order as follows:
>>> sr[['c','d','a','b']]
c 3
d 4
a 1
b 2
dtype: int64
Series DataFrame reindex. . , ( , ):
>>> sr.reindex(['c','d','a','b','e'])
c 3
d 4
a 1
b 2
e NaN
dtype: int64
Series DataFrame - loc :
>>> sr.loc[['c','d','a','b']]
c 3
d 4
a 1
b 2
dtype: int64