# %% Import of packages (e.g. numpy) and your own classes: from module_def_Formula_1 import Formula_1 # %% Application of class Formula_1: # Defining variables used in calling instance of class: k0 = 0 k1 = 1 x = 5 # Creating instance here named F1: F1 = Formula_1(k0, k1) # Calling method named output of F1: print('Output value y1:', F1.output(x)) # Calling method named rate of F1: print('Calculating rate coeff of formula:', F1.rate()) # Showing data attribute c0 of F1: print('Data attribute c0: ', F1.c0) # Showing type of F1: print('Instance type of F1: ', type(F1))