码迷,mamicode.com
首页 > 其他好文 > 详细

序列判断

时间:2015-06-25 01:36:40      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:python水题

stopword = ‘‘
str = ‘‘
for line in iter(raw_input,stopword):
    str += line + ‘\n‘
L = str.strip().split(‘\n‘)
L_num = []
for c in L:
    L_num.append(int(c))
L_down = L_num[:]
L_up = L_num[:]
L_down.sort(reverse = 1)
L_up.sort()
print ‘L_down=‘,L_down
print ‘L_up=‘,L_up
if L_num == L_down:
    print "DOWN"
elif L_num == L_up:
    print "UP"
else:
    print "WRONG"


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

序列判断

标签:python水题

原文地址:http://10458754.blog.51cto.com/10448754/1665202

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!