728x90
반응형
1. Download attached file(lotto645.html)
2. Double click the downloaded file (or Downloaded file open in browser)
1. 첨부파일 다운로드(lotto645.html)
2. 다운로드 파일 더블클릭 (또는 다운로드 파일 브라우저에서 열기)
html source :
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Lotto 6/45 (korea lottery)</h1>
<p>version : 0.1</p>
<p>date : 2023-04-28 (Y-M-D)</p>
<p>author : gangserver</p>
<form><input type="button" value="Refresh" onClick="window.location.reload()"></form>
<py-script>
import random
i = 1
result = []
while True:
pick = random.randint(1, 45)
if pick not in result:
print("%d - pick number : %d" % (i, pick))
result.append(pick)
i += 1
if len(result) == 6:
break
print("\nlotto 6/45 result : %s" % sorted(result))
</py-script>
</body>
</html>
Good luck~^^
728x90
반응형
'개발 > Python' 카테고리의 다른 글
천 단위 숫자를 컴마(',')로 구분하기 (0) | 2023.06.11 |
---|---|
Raspberry Pi - ImportError: libf77blas.so.3: cannot open shared object file: No such file or directory (0) | 2023.05.04 |
PIP package backup / restore (0) | 2023.04.19 |
Linux Anaconda Download, Install, Update (0) | 2023.04.18 |
python library install (0) | 2023.03.07 |