This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

21 lines
371 B
Python

def ListToSet(List1):
set1 = set(List1)
#print(set1)
List1 = list(set1)
print(sorted(List1))
def inputList():
n = int(input("Enter number of elements:"))
List1 = []
# iterating till the range
for i in range(0, n):
x = (input("Enter value for list:"))
List1.append(x)
ListToSet(List1)
#main program
inputList()