The below shown is the output console in pycharm. I would like to show a long sentence print out but it gives me ...
notes
0 {'Notes': "85 Male Malay NKDA walking stick a...
1 {'Notes': '85yo chinese man nkda PHX 1) Hypert...
This is the codes I used to achieved the print out:
pd.set_option('display.width', 100000)
pd.set_option('display.max_rows', 5000, 'display.max_columns', 500)
df = pd.DataFrame(np.array(c3), columns=["notes"]).drop_duplicates()
print(df)