import control # %% Creating the transfer function: s = control.tf('s') H = 2/(5*s + 1) # %% Displaying the transfer function: print('H(s) =', H)