相同数字

stopword = ''
str = ''
for line in iter(raw_input,stopword):
    str += line + '\n'
L = str.strip().split('\n')
L_set = set(L)
if len(L) == len(L_set):
    print 'NO'
else:
    print 'YES'

给你一个整数列表L,判断L中是否存在相同的数字,
若存在,输出YES,否则输出NO。

本文出自 “Complex” 博客,谢绝转载!

你可能感兴趣的:(python水题)