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

溫馨提示×

溫馨提示×

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

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

Python怎么實現雙色球號碼隨機生成

發布時間:2022-05-20 09:09:30 來源:億速云 閱讀:176 作者:iii 欄目:開發技術

這篇“Python怎么實現雙色球號碼隨機生成”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Python怎么實現雙色球號碼隨機生成”文章吧。

1. 隨機一注

福彩雙色球一注同樣包含 7 個數字,包含 6 個紅球和 1 個籃球

其中

  • 紅球是從 1 - 33 中選擇 6 個不同的數字

  • 藍球是從 1 - 16 中選擇 1 個不同的數字

使用 Python 隨機生成一注雙色球號碼,部分代碼如下:

def gene_ssq(number):
    """
    隨機產生幾注雙色球(6+1)
    :param number:
    :return:
    """
    result = []

    for item in range(number):
        reds = []

        # 產生6個紅球
        while len(reds) < 6:
            # 從1-33中隨機取一個數字
            temp_red_num = random.randint(1, 33)
            if temp_red_num not in reds:
                reds.append(temp_red_num)

        # 藍球
        blue = random.randint(1, 16)

        # 紅球排序
        reds.sort()

        # 數據預處理
        reds = nums_pre(reds)
        blue = nums_pre([blue])[0]

        result.append(' '.join(reds) + " + " + blue)
    return '\n'.join(result)

需要注意的是,為了方便后面判斷是否中獎,這里對紅球列表進行了一次數據預處理,將小于 10 的數字前面加上 0

def nums_pre(nums):
    """
    購買數字預處理,如果是個位數,加上0
    :param nums:
    :return:
    """
    if nums:
        if isinstance(nums, list) or isinstance(nums,tuple):
            return ['0{}'.format(int(item)) if int(item) < 10 else str(int(item)) for item in nums]
        else:
            return '0{}'.format(int(nums)) if int(nums) < 10 else str(int(nums))
    else:
        return ''

2. 紅球固定或藍球固定

這里以紅球固定、藍球固定兩個最簡單的場景為例,其他復雜的場景可以自行拓展

紅球固定

紅球固定的情況下,我們只需要隨機生成一個藍球,然后進行數據預處理,最后組成一注號碼即可

def gene_blue_random_ssq(reds, number):
    """
    紅球固定,藍球隨機
    :param reds:
    :param number:
    :return:
    """
    result = []

    for item in range(number):
        # 藍球
        blue = random.randint(1, 16)

        # 紅球排序
        reds.sort()

        # 數據預處理
        reds = nums_pre(reds)
        blue = nums_pre([blue])[0]

        result.append(' '.join(reds) + " + " + blue)
    return '\n'.join(result)

藍球固定

藍球固定時,我們只需要從 1-33 中隨機生成 6 個不同的數字組成紅球

def gene_red_random_ssq(blue, number):
    """
    藍球固定,紅球隨機
    :param blue:
    :param number:
    :return:
    """
    result = []

    for item in range(number):
        reds = []

        # 產生6個紅球
        while len(reds) < 6:
            # 從1-33中隨機取一個數字
            temp_red_num = random.randint(1, 33)
            if temp_red_num not in reds:
                reds.append(temp_red_num)

        # 紅球排序
        reds.sort()

        # 數據預處理
        reds = nums_pre(reds)
        blue = nums_pre([blue])[0]

        result.append(' '.join(reds) + " + " + blue)
    return '\n'.join(result)

3. 爬取中獎號碼

相比體彩大樂透,雙色球的開獎時間會稍微一些,煎蛋哥建議選擇晚上 10 點半進行爬蟲

目標地址:

aHR0cDovL2thaWppYW5nLjUwMC5jb20vc3RhdGljL2luZm8va2FpamlhbmcveG1sL3NzcS9saXN0LnhtbA==

該網站通過 XML 數據展示了過去每一期雙色球的中獎號碼,我們只需要使用正則表達式匹配出所有中獎號碼,取最近的一期號碼即可

import re
import requests

class SSQ(object):

    def __init__(self):
        # 具體的地址請解碼后自行替換
        self.url = '**/xml/ssq/list.xml'
        self.headers = {
            'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'
        }

    def get_last_ssq_lucky(self):
        # 發起請求
        reponse = requests.get(url=self.url, headers=self.headers)

        # 正則規則
        pattern = re.compile(r'<row.*?expect="(.*?)".*?opencode="(.*?)".*?opentime="(.*?)"')

        # 雙色球數據
        ssq_raw_list = pattern.findall(reponse.text)

        results = []

        for item in ssq_raw_list:
            # 期數、數據、時間
            no, info, create_at = item
            # 6個紅球、1個籃球
            red, blue = info.split("|")

            red_datas = red.split(",")

            results.append(
                [no, red_datas[0], red_datas[1], red_datas[2], red_datas[3], red_datas[4], red_datas[5], blue,
                 create_at]
            )

        # 最近的一期中獎號碼
        last_lottery = results[0]

        return [last_lottery[1], last_lottery[2], last_lottery[3], last_lottery[4], last_lottery[5], last_lottery[6]], \
               last_lottery[7]

4. 是否中獎

根據雙色球官網提供中獎規則,我們根據紅球中獎個數、藍球中獎個數組成中獎信息即可

實現代碼如下:

...
def judge_ssq_lucky(red_nums_result, red_nums_buy, blue_num_result, blue_num_buy):
    """
    根據中獎號碼及購買號碼,返回對應的中獎信息
    :param red_nums_result:
    :param red_nums_buy:
    :param blue_num_result:
    :param blue_num_buy:
    :return:
    """
    # 紅球預測的數目
    red_lucky_count = 0
    # 籃球預測的數目
    blue_lucky_count = 0

    # 數據預處理
    red_nums_buy = nums_pre(red_nums_buy)
    blue_num_buy = nums_pre(blue_num_buy)

    # 判斷紅球
    for red_result_item in red_nums_result:
        for red_buy_item in red_nums_buy:
            if red_result_item == red_buy_item:
                red_lucky_count += 1

    # 判斷藍球
    if blue_num_result == blue_num_buy:
        blue_lucky_count = 1

    # 據福彩雙色球的中獎規則所寫,包括了所有的紅藍組合以及相對應的中獎情況
    if red_lucky_count == 6 and blue_lucky_count == 1:
        luck_level = 1  # 一等獎(6+1)
    elif red_lucky_count == 6 and blue_lucky_count == 0:
        luck_level = 2  # 二等獎(6+0)
    elif red_lucky_count == 5 and blue_lucky_count == 1:
        luck_level = 3  # 三等獎(5+1)
    elif red_lucky_count == 5 and blue_lucky_count == 0:
        luck_level = 4  # 四等獎(5+0)
    elif red_lucky_count == 4 and blue_lucky_count == 1:
        luck_level = 4  # 四等獎(4+1)
    elif red_lucky_count == 4 and blue_lucky_count == 0:
        luck_level = 5  # 五等獎(4+0)
    elif red_lucky_count == 3 and blue_lucky_count == 1:
        luck_level = 5  # 五等獎(3+1)
    elif red_lucky_count == 0 and blue_lucky_count == 1:
        luck_level = 6  # 六等獎(0+1)
    elif red_lucky_count == 1 and blue_lucky_count == 1:
        luck_level = 6  # 六等獎(1+1)
    elif red_lucky_count == 2 and blue_lucky_count == 1:
        luck_level = 6  # 六等獎(2+1)
    else:
        luck_level = -1

    return __get_lucky_desc(luck_level),luck_level

以上就是關于“Python怎么實現雙色球號碼隨機生成”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

东乡族自治县| 云浮市| 黔南| 万荣县| 潼关县| 丰顺县| 吉林市| 应用必备| 黔江区| 四子王旗| 岐山县| 长泰县| 勐海县| 沅江市| 工布江达县| 唐山市| 五河县| 偃师市| 营山县| 筠连县| 兴文县| 郑州市| 浦城县| 万荣县| 沈阳市| 通渭县| 新宁县| 衢州市| 丰原市| 安龙县| 南汇区| 汉中市| 望江县| 巴中市| 克东县| 蓬溪县| 禄丰县| 广灵县| 象山县| 理塘县| 通海县|