python
文章平均质量分 63
张小贝_
github地址:https://github.com/beibeiMary
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python安装问题No Python interpreter selected
集成开发环境(IDE:Integrated Development Environment): PyCharm PyCharm 是由 JetBrains 打造的一款 Python IDE,支持 macOS、 Windows、 Linux 系统。 PyCharm 功能 : 调试、语法高亮、Project管理、代码跳转、智能提示、自动完成、单元测试、版本控制…… PyCharm原创 2017-09-21 10:25:54 · 2642 阅读 · 0 评论 -
python中文编码错误情况
先看正确编码格式 #!/usr/bin/python # -*- coding: UTF-8 -*- print "hello world" print "你好,世界"; 当不写 # -*- coding: UTF-8 -*- 或者 #coding=utf-8 的时候,英文没问题,但中文会出错 C:\Python27\python.exe E:/zhangshuyang/python/t原创 2017-09-21 10:44:23 · 1224 阅读 · 0 评论 -
python itertools迭代器模块学习笔记
以下函数均返回迭代器 count 原型: count(start[, step]) 返回: start, start+step, start+2*step, ... (以start为首项, step为公差的等差数列) example: count(10):10, 11, 12, 13, ..... cycle 原型: cycle(p)转载 2018-02-05 11:14:17 · 339 阅读 · 0 评论
分享