摘要: # coding=utf-8 // 支持中文 voted = {} def check_voter(name): if voted.get(name): print "剔除" else: voted[name] = True print "可以投票" check_voter("tom") check 阅读全文
posted @ 2021-12-10 14:58 TBHacker 阅读(169) 评论(0) 推荐(0) 编辑