Quick actions

cmd+k|ctrl+k

Navigation

Languages

BT Pymi 3

Snippet info

Language

Python

Visibility

public

Author

nhb.fit.hut

Created

2017-04-25T10:54:15Z

Updated

2017-04-25T10:55:37Z

input_data = 'cho meo ga chuot vit ngan'
output = []
for i in input_data:
    if input_data.count(i) == 1:
        output.append(i)
print(output)
INFO