Most of what you are doing is already kind of python 3 compatible. Just use
from __future__ import print_function, division
at the beginning of all your scripts to make it a little easier (I realise lmfit is not Python 3 compatible, but there's no reason for the programs to be stuck in one version).
Most of what you are doing is already kind of python 3 compatible. Just use
at the beginning of all your scripts to make it a little easier (I realise lmfit is not Python 3 compatible, but there's no reason for the programs to be stuck in one version).