'How to plot different line style for each column in the dataset using seaborn

I have the following dataset df:

A   B   C   D   E
1   2   5   6   9  
7   9   10  11  13
6   10  11  23  87

I want to create a seaborn line plot so that for each of the columns I get a different linestyle with the same color, the linestyle which I can choose, however, I am clueless about how to proceed from here

I tried this and I am getting the required result however I want to choose the different linestyle for each of the columns manually:

sns.lineplot(data=df)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source