我是靠谱客的博主 勤奋花生,最近开发中收集的这篇文章主要介绍Python for循环之查找下一个记录,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

      我们在使用for循环的时候,由于python语言的高效性,致使我们渐渐忽略了一个很重要的角色,index。

      怎样查找当前记录的下一条记录呢?

     

   li1 = [3, 4, 5, 6, 7]
   i = 0
   for rec in li1:
       print "this record is: " + str(rec)
       if i + 1 < len(li1):
           print "next record is: " + str(li1[i + 1]       
       else:
           print "the last record!"
       print 'n'
       i += 1
       运行结果:
this record is: 3
next record is: 4


this record is: 4
next record is: 5


this record is: 5
next record is: 6


this record is: 6
next record is: 7


this record is: 7
the last record!


     

      

最后

以上就是勤奋花生为你收集整理的Python for循环之查找下一个记录的全部内容,希望文章能够帮你解决Python for循环之查找下一个记录所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部