I have a dataset and I want to combine the first two rows of the same dataset into a single dataset. The original dataset is very big but I have mentioned a small example here.
df
  one  two  three
0  T    H     A
1  N    K     S
2  F    O     R
3  H    L     P  
After combining the first two rows it should look like this:
df
  one  two  three  one  two  three
0  T    H     A     N    K     S
I'm very new to StackOverflow and started my career recently in python. If my question is not formatted correctly please suggest edits. Thanks.
 
     
    