In [2]:
import pandas as pd

In [3]:
GenesisDF = pd.read_csv("Visualize_Genesis.csv")

In [5]:
GenesisDF['NSubjs'].head()


Out[5]:
0                          [God ]
1    [earth , darkness , Spirit ]
2                          [God ]
3       [b'And , God , it , God ]
4           [God , he , evening ]
Name: NSubjs, dtype: object

In [15]:
for element in GenesisDF['NSubjs']:
    newElement = element.replace(']','').replace('[','').strip()
    for item in newElement:
        print(item.split(" "))
    break


['G']
['o']
['d']

In [ ]: