How to create a list by concatenating two list using python
Var=['Age','Height']
Cat=[1,2,3,4,5]
My output should be like this below.
AgeLabel=['Age1', 'Age2', 'Age3', 'Age4', 'Age5']
HeightLabel=['Height1', 'Height2', 'Height3', 'Height4', 'Height5']