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

hackerrank---List Comprehensions

时间:2014-05-11 18:05:07      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   c   

题目链接

刷刷Python基本功...列表解析

附上代码:

1 x = int(input())
2 y = int(input())
3 z = int(input())
4 n = int(input())
5 print [[i, j, k] for i in xrange(x+1) for j in xrange(y+1) for k in xrange(z+1) if i+j+k != n]

 

hackerrank---List Comprehensions,布布扣,bubuko.com

hackerrank---List Comprehensions

标签:style   blog   class   code   tar   c   

原文地址:http://www.cnblogs.com/Stomach-ache/p/3721898.html

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