BroTeoTM commited on
Commit
cb8dea3
·
verified ·
1 Parent(s): 2c5d015

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -4
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('My First Streamlit App')
7
  # Add a welcome message
8
- st.write('Welcome to my Streamlit app!')
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 đề 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)