
python
未来的小牛
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
zip()函数
1.描述zip() 函数用于将可迭代的对象作为参数,将对象中对应的元素打包成一个个元组,然后返回由这些元组组成的列表。如果各个迭代器的元素个数不一致,则返回列表长度与最短的对象相同,利用 * 号操作符,可以将元组解压为列表。zip 方法在 Python 2 和 Python 3 中的不同:在 Python 3.x 中为了减少内存,zip() 返回的是一个对象。如需展示列表,需手动 list(...转载 2018-12-31 11:03:53 · 385 阅读 · 0 评论 -
chromedriver与chrome各版本及下载地址
驱动的下载地址如下:http://chromedriver.storage.googleapis.com/index.html原创 2019-03-25 17:16:06 · 8539 阅读 · 0 评论 -
debian9 安装 Python3.6.5
查看系统python版本pythonPython 2.7.9 (default, Mar 1 2015, 18:22:53)[GCC 4.9.2] on linux2Type “help”, “copyright”, “credits” or “license” for more information.1.更新软件包apt-get updateapt-get upgra...转载 2019-04-09 16:12:56 · 1498 阅读 · 0 评论