python
星缘若影
这个作者很懒,什么都没留下…
展开
-
selenium实现按住ctrl键并点击两个以上元素
from selenium.webdriver.common.action_chains import ActionChainsfrom selenium.webdriver.common.keys import Keysfrom selenium import webdriverActionChains(self.driver).key_down(Keys.CONTROL).perform()self.driver.find_element_by_class_name("chartContain原创 2020-08-13 15:31:58 · 1364 阅读 · 0 评论 -
类名作为参数传递的例子
class Animal(object): animalName = "Animal" #类变量,看来python中没静态变量这一说(我之前的说法不严谨) @classmethod #类方法 def print_name(self): #self指的类作为对象传入 return self.animal...原创 2020-04-22 17:36:55 · 1827 阅读 · 0 评论 -
python报错总结
1.AttributeError: module ‘pymysql’ has no attribute ‘cursors’代码#!/usr/bin/python3import pymysqlconn = pymysql.connect(host='218.245.0.109', port=3306, user='logistics', passwd='password', db='...原创 2019-01-24 14:35:37 · 1042 阅读 · 0 评论 -
转载:python写入大量数据
版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/Tan_HandSome/article/details/79261413 </div> <link rel="stylesheet"...转载 2019-01-24 15:17:10 · 1906 阅读 · 2 评论 -
PyCharm中的from...import报错解决
安装jieba插件。用PyCharm自带的project interpreter 安装失败打开cmd 输入pip install jieba安装成功问题解决原创 2019-06-10 10:44:47 · 10539 阅读 · 2 评论