91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么實現手機號自動判斷男女性別

發布時間:2021-02-08 11:42:46 來源:億速云 閱讀:382 作者:小新 欄目:開發技術

小編給大家分享一下Python怎么實現手機號自動判斷男女性別,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

本文性別判斷主要依靠airtest中的自動化測試實現

通過自動對比支付寶頁面男女圖像,從而實現男女判斷

Python怎么實現手機號自動判斷男女性別Python怎么實現手機號自動判斷男女性別

代碼如下:

男女判斷函數:

// An highlighted block
def numbe():
  if exists(Template(r"tpl1574867500094.png", threshold=0.85, rgb=True, target_pos=0, record_pos=(0.779, 0.382), resolution=(960, 540))):
    sex = "女"   
  if exists(Template(r"tpl1574924960910.png", threshold=0.89, rgb=True, target_pos=5, record_pos=(0.779, 0.382), resolution=(960, 540))):
    sex = "男"
  else:
    sex = "不存在"
  namesex = sex
  keyevent("4")
  return namesex

手機滑動(根據手機分辨率自行調整):

// An highlighted block
def scoll():
  try:
    swipe(v1=(629, 1750),v2=(629, 310)) # 滑動距離需要根據手機分辨率自行調整        
  except:
    print("can't go back to the main page")

刷選函數:

// An highlighted block
def number():  
  data_list =[]
  for i in range(9): # 根據手機分辨率自行調整
    try:
      title =poco(name="com.alipay.mobile.contactsapp:id/contact_item_name")[i].get_text()
      name = poco(name="com.alipay.mobile.contactsapp:id/concast_from")[i].get_text()
      print(title)
      name_a =name[5:6]
      if title not in data_list and name_a is not "1":
        poco("com.alipay.mobile.contactsapp:id/contact_item_name")[i].click()       
        sexname=numbe()      
        if sexname =="男":
          print(str(sexname))
      
        else:
          print(str(sexname))
          
      else:
        print(name_a)
        print("不存在")
    except:
      print("出錯,跳過!")

綜合:

// An highlighted block
# -*- encoding=utf8 -*-
__author__ = "liuqingsong"
def numbe():
  if exists(Template(r"tpl1574867500094.png", threshold=0.85, rgb=True, target_pos=0, record_pos=(0.779, 0.382), resolution=(960, 540))):
    sex = "女"   
  if exists(Template(r"tpl1574924960910.png", threshold=0.89, rgb=True, target_pos=5, record_pos=(0.779, 0.382), resolution=(960, 540))):
    sex = "男"
  else:
    sex = "不存在"
  namesex = sex
  keyevent("4")
  return namesex
def scoll():
  try:
    swipe(v1=(629, 1750),v2=(629, 310)) # 滑動距離需要根據手機分辨率自行調整        
  except:
    print("can't go back to the main page")

def number():  
  data_list =[]
  for i in range(9): # 根據手機分辨率自行調整
    try:
      title =poco(name="com.alipay.mobile.contactsapp:id/contact_item_name")[i].get_text()
      name = poco(name="com.alipay.mobile.contactsapp:id/concast_from")[i].get_text()
      print(title)
      name_a =name[5:6]
      if title not in data_list and name_a is not "1":
        poco("com.alipay.mobile.contactsapp:id/contact_item_name")[i].click()       
        sexname=numbe()      
        if sexname =="男":
          print(str(sexname))
          with open(r'./new/男.csv','a',encoding='utf-8') as f:
            f.write("{},{}\n".format(title,sexname))
        else:
          print(str(sexname))
          with open(r'./new/女.csv','a',encoding='utf-8') as f:
            f.write("{},{}\n".format(title,sexname))
      else:
        print(name_a)
        print("不存在")
    except:
      print("出錯,跳過!")
a=0
while a<5:#根據手機上號碼量的多少自行選擇
  number()
  scoll()
  sleep(1)
  a=a+1

看完了這篇文章,相信你對“Python怎么實現手機號自動判斷男女性別”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台东县| 思茅市| 金乡县| 乡宁县| 雅安市| 大丰市| 临西县| 龙州县| 新巴尔虎右旗| 昭苏县| 南昌县| 体育| 辽源市| 新野县| 洛浦县| 兰西县| 鲁山县| 洪雅县| 合阳县| 武定县| 观塘区| 玛沁县| 贵德县| 名山县| 祁阳县| 即墨市| 新绛县| 新乐市| 甘肃省| 安陆市| 高尔夫| 嘉鱼县| 朔州市| 岑巩县| 灌南县| 梧州市| 启东市| 个旧市| 横峰县| 米林县| 黄石市|