CoolFace
Apppublic

Vijaykumar28/string

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
app.py19 linesDownload Raw Back to root
1import streamlit as st2 3def concatenate_names(first_name, last_name):4    """5    This function takes a first name and a last name as input and returns the full name.6    """7    full_name = first_name + " " + last_name8    return full_name9 10# Streamlit app11st.title('Name Concatenation App')12 13first_name = st.text_input("Enter your first name:")14last_name = st.text_input("Enter your last name:")15 16if st.button("Concatenate"):17    full_name = concatenate_names(first_name, last_name)18    st.write("Full Name:", full_name)19