pikaduck's picture
Added st.code to enable copy to clipboard
8b14bd6
raw
history blame contribute delete
341 Bytes
"""
Generate selected emoji N times
@author : Sakshi Tantak
"""
# Imports
import streamlit as st
def main():
emoji = st.text_input('Enter the emoji you want string for')
count = int(st.number_input('Count of emoji', min_value = 1, max_value = 75, step = 1))
st.code(emoji * count)
if __name__ == '__main__':
main()