Brainiac11 / My-Projects

Too many blank lines found FLK-E303
Style
Minor
a year agoa year old
too many blank lines (3)
195        
196
197    
198        #print(x)199        #print(ys)
200
201        # setting the axes at the centre
too many blank lines (2)
 61            i = int(i) + 1
 62            
 63            
 64        print("The data points you entered: ") 65        print(data_point_list_x)
 66        print(data_point_list_y)
 67
too many blank lines (4)
 70
 71
 72
 73    elif operation == 2: 74        print("Enter a function solving for y")
 75        print("Put NO spaces in the function")
 76        print("If x has no coefficient, put 1")
too many blank lines (2)
190            plot_regression_line(x, y, b)
191
192
193        if __name__ == "__main__":194            main()
195        
196
too many blank lines (2)
173            plt.show()
174
175
176        def main():177            # observations / data
178            x = np.array(data_point_list_x)
179            y = np.array(data_point_list_y)