认真康乃馨

文章
7
资源
0
加入时间
2年10月17天

Python基础

1.输出print('hello world')2.定义变量  variable=5variable2='hello'3.用户输入  user_input=input('提示内容')4.逻辑运算符  and  #两个都为true则为true  or  #一个条件为true则为true  not  #取反5.赋值运算符  num=5  num+=1 #num=num+1  num-=1 #num=num-1  num*=1 #num=num...

struts.xml向jsp传递参数

struts.xml文件                              /WEB-INF/news/newsList.jsp                                           list!list?para=1     newsList.jsp         window.onload

解决'chromedriver' executable needs to be in PATH

使用selenium创建browser就开始报错,错误原因是没有chrome驱动解决方法:下载对应版本的chromedriver,下载地址为(http://chromedriver.storage.googleapis.com/index.html),下载后得到压缩包,解压得到 chromedriver.exe 文件 将exe文件复制到谷歌浏览器目录(如 C:\Program Files...