美文网首页python
python问题小结

python问题小结

作者: 秦琴er | 来源:发表于2018-06-20 10:13 被阅读0次

    一个很好可以获取所有的小写字母

    import string

    for word in string.ascii_lowercase:

        print (word)

    一个很好的可以把str加入到其他str中

    start_list = "https://www.autohome.com.cn/grade/carhtml/{}.html"

    start_list = [start_list.format(word) for word in string.ascii_lowercase]

    把图片下载下来

    respons = requests.get(img, headers=headers)

                with open(r'C:/Users/admin/Desktop/img/%s.jpg'%img[-8:-4],'wb')as f:

                    f.write(respons.content)

    最近在python3.5中运行scrapy,但scrapy没有安装,用pip install scrapy,总是报错

    error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools

    最近在网上找到一个方法,先在网址下载:https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted,cp后面是代表python程序版本,

    下载完成后,在cmd中运行pip install "Twisted-18.4.0-cp35-cp35m-win_amd64.whl"

    这样就可以了

    相关文章

      网友评论

        本文标题:python问题小结

        本文链接:https://www.haomeiwen.com/subject/joutyftx.html