Spaces:
Runtime error
Runtime error
Commit ·
64b81fb
1
Parent(s): 60bef38
changed markdown
Browse files
app.py
CHANGED
|
@@ -20,7 +20,7 @@ game_selection = st.sidebar.selectbox(
|
|
| 20 |
|
| 21 |
option = option_menu(
|
| 22 |
menu_title=None,
|
| 23 |
-
options = ["
|
| 24 |
default_index=1,
|
| 25 |
orientation="horizontal",
|
| 26 |
)
|
|
@@ -29,8 +29,8 @@ st.sidebar.write('You selected:', option)
|
|
| 29 |
|
| 30 |
st.title(f"Welcome to the :red[{game_selection}] guessing game :runner:")
|
| 31 |
|
| 32 |
-
st.markdown("This game will test your
|
| 33 |
-
st.markdown("Will you be able to guess the
|
| 34 |
|
| 35 |
start = st.sidebar.button("Start", type="primary")
|
| 36 |
if start:
|
|
|
|
| 20 |
|
| 21 |
option = option_menu(
|
| 22 |
menu_title=None,
|
| 23 |
+
options = ["EASY", "NORMAL", "HARD"],
|
| 24 |
default_index=1,
|
| 25 |
orientation="horizontal",
|
| 26 |
)
|
|
|
|
| 29 |
|
| 30 |
st.title(f"Welcome to the :red[{game_selection}] guessing game :runner:")
|
| 31 |
|
| 32 |
+
st.markdown(f"This game will test your {game_selection} knowledge")
|
| 33 |
+
st.markdown(f"Will you be able to guess the {game_selection} in the 6 yes or no questions?")
|
| 34 |
|
| 35 |
start = st.sidebar.button("Start", type="primary")
|
| 36 |
if start:
|