Spaces:
Runtime error
Runtime error
Prakash N
commited on
Commit
•
46dbba1
1
Parent(s):
d240045
added columns
Browse files
app.py
CHANGED
@@ -28,8 +28,8 @@ st.markdown(""" #### LorSor helps you through a simple 3 stage process.
|
|
28 |
col1, col2 = st.columns(2)
|
29 |
|
30 |
col1.write("This is col1")
|
31 |
-
x =
|
32 |
-
|
33 |
|
34 |
col2.write("This is col2")
|
35 |
|
|
|
28 |
col1, col2 = st.columns(2)
|
29 |
|
30 |
col1.write("This is col1")
|
31 |
+
x = col1.slider('Select a value')
|
32 |
+
col1.write(x, ' squared is', x * x)
|
33 |
|
34 |
col2.write("This is col2")
|
35 |
|