pikaduck commited on
Commit
8b14bd6
·
1 Parent(s): fd2ea05

Added st.code to enable copy to clipboard

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.write(emoji * count)
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()