개발/Python

Lotto 6/45 (korea lottery) random generation pyscript version(v0.1)

강서버 2025. 3. 11. 23:52
반응형

 

lotto645_v1.html
0.00MB

 

1. Download attached file(lotto645_v1.html)

2. Double click the downloaded file (or Downloaded file open in browser)

3. Click the [Generation] button

 

1. 첨부파일 다운로드(lotto645_v1.html)

2. 다운로드 파일 더블클릭 (또는 다운로드 파일 브라우저에서 열기)

3. [Generation] 버튼 클릭

 

html source :

 
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
    <link rel="stylesheet" href="https://pyscript.net/releases/2024.5.2/core.css">
    <script type="module" src="https://pyscript.net/releases/2024.5.2/core.js"></script>
<style>
      #loading { outline: none; border: none; background: transparent }
    </style>
    <script type="module">
      const loading = document.getElementById('loading');
      addEventListener('py:ready', () => loading.close());
      loading.showModal();
    </script>
    <title>로또 6/45, Lotto 6/45 | v0.1</title>
  </head>

  <body>
    <dialog id="loading">
      <h1>Loading...</h1>
    </dialog>
    
    <h3>로또 6/45&nbsp;&nbsp;&nbsp;&nbsp;Lotto 6/45</h3>
    <p style="font-size:10px;">version : 0.1</p>
    <p style="font-size:10px;">date : 2025-01-06 (Y-M-D)</p>
    <p style="font-size:10px;">author : gangserver</p>

    <button py-click="generation">Generation</button>
    <div id="output"></div>
    <script type="py">
import random
from pyscript import document

def generation(event):
    result = calculate()
    
    output_div = document.querySelector("#output")
    output_div.innerText = result

def calculate():
    result = ""

    for i in range(10):
        num = 1
        numbers = []
        
        while True:
            pick = random.randint(1, 45)
            
            if pick not in numbers:
                print(f"{num} - pick number : {pick}")
                numbers.append(pick)
                num += 1
            
            if len(numbers) == 6:
                break
        
        result += "\nLotto 6/45 result " + ("0" + str(i+1) if i < 9 else str(i+1)) + ": " + str(sorted(numbers))
        if i == 4:
            result += "\n" + "*" * 50
    
    return result
</script>
        
  </body>
</html>

 

Good luck~^^

 

반응형