摘要:
my_str ="abcde" new_str ="123456" #字符串拼接 #方式一: splice_str =my_str + new_str print(splice_str) #方式二: new_splice =','.join([my_str,new_str]) print(new_s 阅读全文
posted @ 2021-04-13 15:09
fishing~
阅读(66)
评论(0)
推荐(0)
摘要:
#方式一 # from pywinauto import Desktop # app = Desktop() # dialog = app['打开'] # dialog["Edit"].type_keys(r"D:\appium.txt") # dialog["Button"].click() #方 阅读全文
posted @ 2021-04-13 10:22
fishing~
阅读(46)
评论(0)
推荐(0)