반응형
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 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>
<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 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~^^
반응형
'개발 > Python' 카테고리의 다른 글
Ubuntu 24.04 로또 6/45 랜덤 생성 프로그램 (PyQt5 / pyinstaller) (0) | 2025.03.05 |
---|---|
PyTorch CPU version install (Linux - PIP) (0) | 2025.02.26 |
Ubuntu 24.04 pip install error (0) | 2025.02.17 |
Ubuntu 24.04 python3 pymysql install / uninstall (0) | 2025.02.17 |
Ubuntu 24.04 python3 pyqt5 install / uninstall (0) | 2025.02.17 |