Spaces:
Runtime error
Runtime error
Added st.code to enable copy to clipboard
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ import streamlit as st
|
|
9 |
def main():
|
10 |
emoji = st.text_input('Enter the emoji you want string for')
|
11 |
count = int(st.number_input('Count of emoji', min_value = 1, max_value = 75, step = 1))
|
12 |
-
st.
|
13 |
|
14 |
if __name__ == '__main__':
|
15 |
main()
|
|
|
9 |
def main():
|
10 |
emoji = st.text_input('Enter the emoji you want string for')
|
11 |
count = int(st.number_input('Count of emoji', min_value = 1, max_value = 75, step = 1))
|
12 |
+
st.code(emoji * count)
|
13 |
|
14 |
if __name__ == '__main__':
|
15 |
main()
|