Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -146,21 +146,25 @@ def random_emoji_slot_machine():
|
|
146 |
st.write("Welcome to the Emoji Slot Machine! Press the button below to spin and try your luck!")
|
147 |
|
148 |
emojis = [
|
149 |
-
"๐", "๐", "๐ค", "๐ฝ", "๐ถ", "๐ฆ", "๐", "๐", "๐", "๐"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
]
|
151 |
|
152 |
if st.button("Spin"):
|
153 |
-
for _ in range(
|
154 |
spin_result = []
|
155 |
-
for _ in range(
|
156 |
spin_result.append(random.choice(emojis))
|
157 |
st.write(" ".join(spin_result))
|
158 |
|
159 |
-
# Run the Emoji Slot Machine game function
|
160 |
random_emoji_slot_machine()
|
161 |
|
162 |
-
|
163 |
-
|
164 |
st.markdown(GALMIO)
|
165 |
-
|
166 |
-
|
|
|
146 |
st.write("Welcome to the Emoji Slot Machine! Press the button below to spin and try your luck!")
|
147 |
|
148 |
emojis = [
|
149 |
+
"๐", "๐", "๐ค", "๐ฝ", "๐ถ", "๐ฆ", "๐", "๐", "๐", "๐",
|
150 |
+
"๐", "๐", "๐ฆ", "๐", "๐ฉ", "๐ฎ", "๐ฃ", "๐ช", "๐", "๐",
|
151 |
+
"๐ฑ", "๐ญ", "๐ฆ", "๐ฏ", "๐ผ", "๐ป", "๐ฆ", "๐บ", "๐ฆ", "๐จ",
|
152 |
+
"๐บ๐ธ", "๐ฏ๐ต", "๐ฉ๐ช", "๐ซ๐ท", "๐ช๐ธ", "๐ฌ๐ง", "๐ฎ๐น", "๐ง๐ท", "๐จ๐ฆ", "๐ท๐บ",
|
153 |
+
"โฝ", "๐", "๐", "โพ", "๐พ", "๐", "๐", "๐ฑ", "๐", "๐ธ",
|
154 |
+
"๐", "๐", "๐", "๐", "๐", "๐", "๐", "๐ฅณ", "๐", "๐",
|
155 |
+
"๐", "๐", "๐", "๐", "๐", "๐", "๐", "๐", "๐", "๐",
|
156 |
+
"๐", "๐", "โญ", "๐ ", "๐ฆ", "๐ง", "โ", "๐", "๐", "๐ช",
|
157 |
+
"๐ต", "๐ฆ", "๐ฆง", "๐ฆฆ", "๐", "๐ฆ", "๐ฆ", "๐ฆ", "๐ฆ", "๐ฆ",
|
158 |
+
"๐ฎ", "๐น", "๐ฒ", "๐งฉ", "๐ฏ", "๐ณ", "๐ฐ", "๐ผ", "๐ง", "๐ค"
|
159 |
]
|
160 |
|
161 |
if st.button("Spin"):
|
162 |
+
for _ in range(20):
|
163 |
spin_result = []
|
164 |
+
for _ in range(100):
|
165 |
spin_result.append(random.choice(emojis))
|
166 |
st.write(" ".join(spin_result))
|
167 |
|
|
|
168 |
random_emoji_slot_machine()
|
169 |
|
|
|
|
|
170 |
st.markdown(GALMIO)
|
|
|
|