Answers for "how to check unique in object in python"

1

python get unique id for object

# Get an Id for object:
print(id(2))
140711177190496

print(id("Hi"))
2568748444272

#Why is it so important? If you want to decode something, 
#you can encode it easily by checking with the if statement
Posted by: Guest on December-17-2020
-1

count unique values in python

aa="XXYYYSBAA"
bb=dict(zip(list(aa),[list(aa).count(i) for i in list(aa)]))
print(bb)
# output:
# {'X': 2, 'Y': 3, 'S': 1, 'B': 1, 'A': 2}
Posted by: Guest on September-28-2020

Code answers related to "how to check unique in object in python"

Python Answers by Framework

Browse Popular Code Answers by Language