pikaduck commited on
Commit
dc54b05
·
1 Parent(s): cc1e5e7

Create emoji frequency generator

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Generate selected emoji N times
3
+ @author : Sakshi Tantak
4
+ """
5
+
6
+ # Imports
7
+ import streamlit as st
8
+
9
+ def main():
10
+ emoji = st.text_input('Enter your emoji')
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()