I'm trying to print out a list and strip the " ' " (single quotes) character from a list I generated from a CSV File.
Here's the code I have
import numpy as np
import pandas as pd
export = pd.read_csv('File') #open file
skuList = export.values.T[0].tolist() #transpose DF + convert to list
#print(skuList)
skuList = [value.strip(" ' ") for value in skuList] #strip ' ' '
print(skuList)
The output from this program is 'GL2i-RS-36', '523-30', 'RK623-30', ....
The output that I would want would be: GL2i-RS-36, 523-30, RK623-30, ....
Is there a way to print out a list without the single quotes?