News

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
lst = input("\n\t Enter the list of elements : ").split()#Taking input from the user numbers = [float(x) for x in lst] #Converting input values to float (optional, remove if dealing with strings) ...