2018/05/15

[来源:菜鸟教程](http://www.runoob.com/python3/python3-examples.html)

#No.1
list = [1, 2, 3, 4]
it = iter(list)
for x in it:
print(x, end=" ")
resut:
d:\fly\Python (master -> origin)
λ python test.py
1 2 3 4

最新文章

  1. AOP的实现原理
  2. Failed to load resource: the server responded with a status of 500 (Internal Server Error)
  3. 不插网线,看不到IP的解决办法
  4. 重构Web Api程序(Api Controller和Entity)
  5. C#的匿名函数
  6. 如何使用Retrofit获取服务器返回来的JSON字符串
  7. PL/SQL Developer使用技巧、快捷键
  8. 【转】JavaScript对Json节点的增删改
  9. python运维开发之第六天
  10. sqlserver编程基本语法
  11. Oracle SQL篇(一)null值之初体验
  12. Qt之中文显示(QMessageBox、QLineEdit右键菜单等)
  13. java XML转JSON格式
  14. ecshop商城系统登录出现登录闪退问题
  15. composer设置忽略版本匹配
  16. charles抓包https设置
  17. Json的学习
  18. Error:Execution failed for task ':app:processDebugManifest'. Manifest merger failed with multiple errors, see logs
  19. day6--面向对象初识
  20. Linux下常用的编辑文件与保存命令

热门文章

  1. DataGuard的三种保护模式
  2. 关于 web.config impersonate 帐号模拟
  3. Iframe 定义内联的子窗口(框架)
  4. tp5上传压缩包到相应文件并自动解压到相应文件下
  5. Zeta--S3 Linux使用PCCAM/WEBCAM模式
  6. linux3.4.2内核之块设备驱动
  7. Pyhton-类(2)
  8. 《nginx源代码解析》系列分享专栏
  9. Python学习之——Python安装
  10. nohup和&后台运行,进程查看及终止 详解