过去的习惯,决定今天的你,所以,过去的懒惰,决定你今天的一败涂地。人来到这世界后,命运注定了他必须要拼搏,奋斗,坚持,勇敢地走下去,走出属于自己的道路,没有人能不劳而获。
If order does not matter, you can use"".join(set(foo))
set() will create a set of unique letters in the string, and "".join() will join the letters back to a string in arbitrary order.If order does matter, you can use collections.OrderedDict in Python 2.7:
from collections import OrderedDict
foo = "mppmt"
print "".join(OrderedDict.fromkeys(foo))
printingmpt
以上就是python去掉字符串中重复字符的方法。经过战斗的舍弃是虚伪的,不经过劫难磨练的超脱是轻佻的,逃避现实的明哲是卑怯的。更多关于python去掉字符串中重复字符的方法请关注haodaima.com其它相关文章!