forked from tula3and/random-question-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame_doc.py
83 lines (60 loc) · 2.24 KB
/
game_doc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import streamlit as st
def lotto_doc():
st.image("https://www.dhlottery.co.kr/images/company/img_bi_intro_logo1.png", width=300)
st.title("Korean lottery - *Lotto 6/45*")
st.write(
"""
In the **Lotto 6/45**, you can choose six numbers in the range 45
""")
def powerball_doc():
st.image(
"https://github.com/Denny-Hwang/q-lottery-game/blob/main/src/Powerball.png",
width=300)
st.title("USA lottery - *Power ball*")
st.write(
"""
In the **Power ball**, you can choose five *White ball* in the range 69 and select one *Power ball* in the range 26
""")
def lotto_india_doc():
st.image(
"https://www.lotto.in/images/lottery-logos/lotto-india-logo.png",
width=300)
st.title("India lottery - *Lotto India*")
st.write(
"""
In the **Lotto India**, you can choose six numbers in the range 50 and select one *Joker Ball* in the range 5
""")
def lotto7_doc():
st.image(
"https://cdn.lottolyzer.com/images/lotto7mediumlogo.gif",
width=300)
st.title("Japen lottery - *Lotto7*")
st.write(
"""
In the **Lotto7**, you can choose seven numbers in the range 37
""")
def french_lottery_doc():
st.image(
"https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Logo_FDJ.svg/1024px-Logo_FDJ.svg.png",
width=400)
st.title("France lottery - *French Lottery*")
st.write(
"""
In the **French_lottery**, you can choose five numbers in the range 49 and select one *Lucky number* in the range 10
""")
#######################################################################################################
""" <RESISTRATION FORM>
def (GAME_NAME)_doc():
st.title("GAME_NAME Q-Lottery Game")
st.write(
""
WRITE DOWN HERE ABOUT GAME RULE SHORTLY
"")
"""
#######################################################################################################
def custom_doc():
st.title("Custom Q-Lottery Game")
st.write(
"""
Customize your Q-Lottery Game
""")