You can set the format of a particular column with:
df.style.format({'Column_name':'{:.2e}'})
, where the number before "e" defines the number of decimals shown (2 in my example).