标签: python-3.x
我有这段代码可以将温度从(K)更改为(摄氏)的变量,但我的变量没有改变。任何人都可以提供代码帮助吗?谢谢。
import netCDF4 f=netCDF4.Dataset('temp.nc',mode='r+') tm=f.variables['t2m'][:] tmc=tm-273.15 f.variables['t2m'][:]=tmc f.close()