Spaces:
Runtime error
Runtime error
File size: 341 Bytes
dc54b05 fd2ea05 dc54b05 8b14bd6 dc54b05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""
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() |