You can use the pandas library for this which has an inbuilt method to convert values to list. Refer to the code below:
import pandas as pd
df = pd.read_csv("welcome.csv")
df.values.tolist()
print(df)
Hope this Helps!!
To learn more, join the online course to do Masters in Python.
Thanks!