My code:
coins = ['dashcoin','litecoin','dogecoin','nxt']
pd.DataFrame(columns=['timestamp',coins])
I need a header with 5 different values, but my method create two, the first time stamp then the second 'coins' all in one header.
timestamp dashcoin litecoin dogecoin nxt
How can we separate like pd.DataFrame(columns=coins)