文字列の特定文字での分割

文字列.split(特定文字列)

str="sst.historical.1901.nc"

str.split('.')

['sst','historical'.'1901','nc']

が得られる