카테고리 없음

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

강서버 2024. 4. 27. 22:23
728x90
반응형

 

lotto_645.html
0.00MB

 

1. Download attached file(lotto_645.html)

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

 

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

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

 

html source :

<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
    <script defer src="https://pyscript.net/latest/pyscript.js"></script>
  </head>

  <body>
    <h1>Lotto 6/45 (korea lottery)</h1>
    <p>version : 0.2</p>
    <p>date : 2023-05-14 (Y-M-D)</p>
    <p>author : gangserver</p>
    <form><input type="button" value="Refresh" onClick="window.location.reload()"></form>
    <py-script>

import random

lotto_num = range(1, 46)

for i in range(5):
    print("\nlotto 6/45 result %d : %s" % (i+1, sorted(random.sample(lotto_num, 6))))
    </py-script>
  </body>
</html>

 

Good luck~^^

 

728x90
반응형