I have dataframe like
Name keywords Count
User1 aws 14
User1 ec2 4
User1 python 1
User2 aws 12
User2 ec2 5
User2 python 6
User3 aws 17
User3 ec2 7
User3 python 8
and so on...
I want to convert values in both Keywords and Count column to rows like except the header 'keywords' and 'Count'
example
Name aws ec2 python
User1 14 4 1
User2 12 5 6
User3 17 7 8