Python:判断字符串"abacdbdde"中第一个不重复的字符
程序员文章站
2022-05-12 22:13:31
...
如何运用Python判断字符串"abacdbdde"中第一个不重复的字符???
思路:先从字符串中取出不重复的字符,再根据下标打印
strs="abacdbdde"
list_strs = list(strs) # 将字符串换成列表,以便循环读取
no_repeat_strs = ''.join([x for x in list_strs if list_strs.count(x) == 1]) # ''.join() 把列表转成字符串
fist_no_repat_str = no_repeat_strs[0] # 通过下标获取第一个
print(fist_no_repat_str)
打印结果:c
Done!当然还有其它方法,目前作为小白的我考虑到的是这样~ 看客们有更便捷快速的方式别忘记评论贴一下哇~~~ 爱你们ლ(°◕‵ƹ′◕ლ)