Skip to content

Instantly share code, notes, and snippets.

@pranjalAI
Created September 7, 2022 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pranjalAI/32dcceaa2d96174f9ce5482fd48e36d5 to your computer and use it in GitHub Desktop.
Save pranjalAI/32dcceaa2d96174f9ce5482fd48e36d5 to your computer and use it in GitHub Desktop.
Numbers = [30, 32, 14, 26, 18, 18, 20, 30, 28]
print("Original= ", Numbers)
Numbers = list(set(Numbers))
print("After removing duplicate= ", Numbers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment