直接用import...as...只能加载文件,不能加载函数。用from...import...可以直接加载函数:

from lesson3_6_exponential import solve_exp as a #right
import lesson3_6_exponential