Pandas does come with a mechanism to do this. In case you wish to perform string manipulations yourself and build the output you can do it. However it is much easier and prefereable to use the inbuilt method.
You can simply use the to_string method with index passed as False.
Here is the code:
print(Employee.to_string(index=False))
You can learn more about pandas in depth by watching this youtube video: