冒泡排序:
list1=[ ]
n=int(input(" 请输入列表长度"))
for i in range(1,n+1):
a= int(input("请输入列表数据:"))
list1.append(a)
for i in range(1,n):
for j in range(0,n-1):
if list1[j] >list1[j+1]:
list1[j],list1[j+1] = list1[j+1],list[j]
print("列表排序后的结果为:",list1)
99成法口决表
for i in range(1,10):
for j in range(1,i+1):
print(str(i)+"*"+str(j)+"="+str(i*j),end='\t')
print()
倒序输出乘法表
i=9 第一个乘数
j=9第二个乘数
while i>=1:
while j >=1:
a= str(i)+'*'+str(j)+'='+str(i*j)
print(a,end='\t')
j=j-1 ( 计算完一次,第二个乘数减一)
if j==0: ( 当第二个乘数为0时,表示前一行已经完成了所有的乘数相乘)
i=i-1 ( 第一个乘数减一 )
j=i ( 让两个乘数相等)
print('') (换行)
从selenium导入webdrive包
from selenium import webdriver
from time import sleep
获取浏览器的驱动
br=webdriver.Chrome()
打开被测系统
br.get('https://www.so.com/')
隐式等待
br.implicitly_wait()
八大点位方法
br.find_element_by_id()
br.find_element_by_name()
br.find_element_by_class name()
br.find_element_by_tag_name()
br.find_element_by_link_text()
br.find_element_by_partial_link_text()
br.find_element_by_xpath()
br.find_element_css_selector()
定位下拉框
导入包
from selenium.webdriver.support.ui import Select
定位到下拉菜单的位置
element=br.find_element_by_id()
根据索引选择
Select(element).select_by_index()
根据value值选择
Select(element).select_by_value()
根据可见的值选择
Select(element).select_by_visible_text()
鼠标悬停
导入鼠标的包
from selenium.webdriver import ActionChains
先定位到要悬停的元素
setAdd = br.find_element_by_css_selector()
将鼠标移动到对应的位置
ActionChains(br).move_to_element(setAdd).perform()
获取警告框的文本信息
text = br.switch_to.alert.text
print("text:",text)
sleep(2)
br.switch_to.alert.accept()
往下拉滚动条
br.execute_script("window.scrollTo(0,10000);")
sleep(4)
br.execute_script("window.scrollTo(0,5000);")
sleep(4)
br.execute_script("window.scrollTo(0,0);")
切换表单
frame1=br.find_element_by_id()
br.switch_to.frame(frame1)
切换到默认表单
br.switch_to.default_content()
打印链接
url1=br.current_url
print(url1)
窗口最大化
br.maximize_window()