Questions tagged «fencepost»

21
在“ for”循环中检测最后一个元素的pythonic方法是什么?
我想知道对for循环中的最后一个元素进行特殊处理的最佳方法(更紧凑和“ pythonic”的方法)。有一段代码仅应在元素之间调用,而在最后一个元素中将被隐藏。 这是我目前的操作方式: for i, data in enumerate(data_list): code_that_is_done_for_every_element if i != len(data_list) - 1: code_that_is_done_between_elements 有什么更好的办法吗? 注意:我不希望使用hack之类的东西reduce。;)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.