I have a df and I want to reorder it based on athe list as shown using Python:
df=pd.DataFrame({'Country':["AU","DE","UR","US","GB","SG","KR","JP","CN"],'Stage #': [3,2,6,6,3,2,5,1,1],'Amount':[4530,7668,5975,3568,2349,6776,3046,1111,4852]})
df
list=["US","CN","GB","AU","JP","KR","UR","DE","SG"]
How can I do that? Any thoughts? Thanks!