Skip to content

Commit

Permalink
Basic
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjanaPurbia authored Sep 24, 2021
1 parent 71fca71 commit 5a05e13
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions listCheck.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
lst=input("Enter list elements:")
def number(lst):
x=[]
for i in lst:
if i not in x:
x.append(i)
return x
print(number(lst))

0 comments on commit 5a05e13

Please sign in to comment.