上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 45 下一页
摘要: urls = driver.find_elements_by_xpath("//a") for url in urls: print(url.get_attribute("href")) //获取特定位置的a标签 FLODERURLSLIST = [] floderurls = browser.fi 阅读全文
posted @ 2020-04-24 09:22 胸怀丶若谷 阅读(12649) 评论(0) 推荐(1)
摘要: 命令行输入: javac -encoding UTF-8 StudentInfo.java 阅读全文
posted @ 2020-04-20 10:53 胸怀丶若谷 阅读(352) 评论(0) 推荐(0)
摘要: 切换: # 启动python 3 32位版本py -3.7-32 # 启动python 3 64位版本py -3.7-64 # 启动python 2.7 32位版本py -2.7-32 # 启动python 2 64位版本py -2.7-64 pip使用 py -3.6 -m pip list 虚拟 阅读全文
posted @ 2020-04-15 09:13 胸怀丶若谷 阅读(866) 评论(0) 推荐(0)
摘要: import pandas as pd #设置显示的最大列、宽等参数,消除打印不完全中间的省略号 pd.set_option("display.width",1000) #加了这一行那表格就不会分段出现了 pd.set_option("display.width",1000) #显示所有列 pd.s 阅读全文
posted @ 2020-04-14 15:05 胸怀丶若谷 阅读(1949) 评论(0) 推荐(0)
摘要: import pandas as pd #设置显示的最大列、宽等参数,消除打印不完全中间的省略号 pd.set_option("display.width",1000) #加了这一行那表格就不会分段出现了 pd.set_option("display.width",1000) #显示所有列 pd.s 阅读全文
posted @ 2020-04-14 15:03 胸怀丶若谷 阅读(2743) 评论(0) 推荐(0)
摘要: 下载vc_redist.x64.exe并在不能运行的电脑上运行即可. vc_redist.x64.exe的作用:一款Visual C++的运行库,里面包含了一些Visual C++的库函数。Visual C++开发的Windows应用程序需要这个运行时库的支持才能运行 阅读全文
posted @ 2020-04-14 13:29 胸怀丶若谷 阅读(2713) 评论(0) 推荐(0)
摘要: 在pycharm中安装,和直接输入pip install pyinstaller 均报错, 最后,输入pip install -i https://pypi.douban.com/simple/ pyinstaller 问题解决。 pyinstaller打包exe文件时,注意包的导入. 阅读全文
posted @ 2020-03-31 14:31 胸怀丶若谷 阅读(850) 评论(0) 推荐(0)
摘要: pip install --user --upgrade pip成功升级 阅读全文
posted @ 2020-03-31 14:22 胸怀丶若谷 阅读(109) 评论(0) 推荐(0)
摘要: 1.安装virtualenvwrapper 输入命令:pip install -i https://pypi.douban.com/simple/ virtualenv //下载virtualenvwrapper会自动安装virtualenv模块,所以可以先安装virtulaenvwrapper 2 阅读全文
posted @ 2020-03-16 15:14 胸怀丶若谷 阅读(120) 评论(0) 推荐(0)
摘要: 1.安装virtualenv 输入命令:pip install -i https://pypi.douban.com/simple/ virtualenv 稍等片刻,安装成功。 2.创建虚拟环境 进入想存储环境的路径 输入命令:virtualenv [虚拟环境的名字] 3.进入环境 进入虚拟环境中的 阅读全文
posted @ 2020-03-16 14:18 胸怀丶若谷 阅读(152) 评论(0) 推荐(0)
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 45 下一页