pennypal / app.py
pr3n3y's picture
Add application file
b8a4e05
raw
history blame
No virus
235 Bytes
import streamlit as st
def greeting(name):
st.write(f"Hello, {name}!")
st.title("My first Streamlit app")
st.text("This is a simple app that greets the user.")
name = st.text_input("What is your name?")
if name:
greeting(name)