I am new to python. I'm want to change all the values in the column 'Starting' from df_2 with the 'Station' column from df_1. I did it by using for loop . But How can I perform this task in simplest way?
df_1:
  ID     Station
0   1      Satose
1   2      Forlango
2   3      poterio
.
.
df_2:
 Rail_Number  Starting      Ending 
     AABDD       3           44433 
     DLRAKA      1           45232
     MiGOMu      2           18756   
      .
      .
 
     
    