new2 / app /app.py
LDJA's picture
3
c37ca4f
raw
history blame
329 Bytes
import streamlit as st
def main():
st.title("Application Streamlit avec Entrée de Texte")
# Créer une entrée de texte
user_input = st.text_input("Entrez votre texte ici:")
# Afficher le texte saisi par l'utilisateur
st.write("Vous avez saisi:", user_input)
if __name__ == "__main__":
main()