Quick actions

cmd+k|ctrl+k

Navigation

Languages

HuyNHP-3.6

Snippet info

Language

Python

Visibility

public

Author

huynguyenspkt

Created

2016-09-21T05:25:47Z

Updated

2016-09-21T05:25:47Z

names = 'ran chuot tho'
out = []
for n in names:
    if names.count(n) == 1:
        out.append(n)
print(out)
INFO