pandas read_csv all as object code example
Example: how to define dtype of each column before actually reading csv file
import pandas as pd
# ...[.].csv = your .csv file
# datatype = dtype you want to define.
read = pd.read_csv('......[.]csv',dtype={'name_column':'datatype'})