2020年11月17日

python运算符

摘要: # 运算符5大类 # 算数运算符 + - * / % # 模运算 取余运算 判断数是偶数还是奇数 a = 4 print(a % 3) # 赋值运算符 = += -= # 比较运算符 >、>=、<、<=、!=、== # 比较结果 布尔值 True False # 成员运算符 in、not in s 阅读全文

posted @ 2020-11-17 23:06 Tester十点半 阅读(75) 评论(0) 推荐(0) 编辑

selenium如何定位鼠标悬停才显示的按钮

摘要: # coding:utf-8 from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains driver = webdriver.Firefox() driver.get 阅读全文

posted @ 2020-11-17 15:28 Tester十点半 阅读(780) 评论(0) 推荐(0) 编辑

python列表、元组、字典

摘要: 1、列表(list) # 定义一个列表,可以存在空列表,列表可以包含任意类型的数据 a = [1,0.02,'hello',[1,2,3],True] # 列表里面的与元素用逗号分割 # 列表里面索引值也是从0开始 print(a[0]) # 获取列表里面的单个值:列表[索引值] print(a[3 阅读全文

posted @ 2020-11-17 10:31 Tester十点半 阅读(90) 评论(0) 推荐(0) 编辑

导航