- 博客(6)
- 收藏
- 关注
原创 appium
命令:adb shell "dumpsys window | grep mCurrentFocus"# 命令:adb shell "dumpsys window | grep mCurrentFocus"
2023-04-18 21:58:30 115
原创 浏览器驱动
Chrome:http://chromedriver.storage.googleapis.com/index.html Firefox:Releases · mozilla/geckodriver · GitHub IE:http://selenium-release.storage.googleapis.com/index.html Opera:Releases · operasoftware/operachromiumdriver · GitHub
2023-04-18 11:44:31 86
原创 python的def函数对列表排序:空杯和冒泡排序
将list1 = [7, 4, 3, 67, 34, 1, 8]中的数据从小到大排序,最后输出结果为:[1, 3, 4, 7, 8, 34, 67]:提示冒泡排序,比较大小交换位置,或者用空杯交换原理。for j in range(0,len(list1)-i): #比较的轮次,第一轮j的第0位和后面的比,执行if,比较6次。#比较的轮次,第一轮j的第1位和后面的比,执行if,比较5次。a-=1#每比较一次,比较次数就少1。
2023-04-10 18:34:10 430 1
原创 python的列表,集合,字典的推导式
print({i:j for i,j in d1.items() if isinstance(j,int)})#isinstance(j,int):判断类型,如果j=int就输出。print({i for i,x in d1.items() if type(i)==int})#type(i)==int:判断类型,如果i=int就输出。print({i**2 for i in d1.values() if isinstance(i,int)})#i**2:输出结果为int类型的平方。'''字典推导式'''
2023-04-10 18:29:07 99 1
原创 python循环写三角形
for x in range(1,a-i+2):#每增加一列就减少输出一颗星:a+1-i,因为开区间取不到最后一位,需要a+1-i+1。if z==1 or z==i*2-1:#如果z==1 或者 z==i*2-1才输出*for j in range(1,i+1):#1.1:每增加一列,增加一个#for j in range(1,n+1-i):#列,直角三角形的打印。for j in range(1,n+1-i):#列,直角三角形的打印。for i in range(1,n+1):#行号。
2023-04-09 12:20:32 5311 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人