Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,13 +3,19 @@ from datasets import load_dataset
|
|
| 3 |
import os
|
| 4 |
import sys
|
| 5 |
# Set the app title
|
| 6 |
-
st.title('
|
| 7 |
# Add a welcome message
|
| 8 |
-
st.write('
|
| 9 |
# Create a text input
|
| 10 |
-
user_input = st.text_input('Enter a custom message:', 'Hello, Streamlit!')
|
| 11 |
# Display the customized message
|
| 12 |
-
st.write('Customized Message:', user_input)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
path = os.getcwd()
|
| 14 |
|
| 15 |
st.write('Current Path:', path)
|
|
|
|
| 3 |
import os
|
| 4 |
import sys
|
| 5 |
# Set the app title
|
| 6 |
+
st.title('Siêu phẩm dự đoán lô đề')
|
| 7 |
# Add a welcome message
|
| 8 |
+
st.write('Dự đoán lô đề dựa vào kết quả xổ số miền Bắc')
|
| 9 |
# Create a text input
|
| 10 |
+
#user_input = st.text_input('Enter a custom message:', 'Hello, Streamlit!')
|
| 11 |
# Display the customized message
|
| 12 |
+
#st.write('Customized Message:', user_input)
|
| 13 |
+
first_button = st.button("Chọn dự đoán đề",type='primary')
|
| 14 |
+
second_button = st.button("Chọn dự đoán lô",type="secondary")
|
| 15 |
+
if first_button:
|
| 16 |
+
st.write("Oánh đề à?")
|
| 17 |
+
else:
|
| 18 |
+
st.write("Oánh lô nhé")
|
| 19 |
path = os.getcwd()
|
| 20 |
|
| 21 |
st.write('Current Path:', path)
|