fcesc-code commited on
Commit
5bd2b6b
1 Parent(s): fd5f2f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ st.markdown("Let's create a magical story just for you!")
9
 
10
  # User input
11
  child_name = st.text_input("What's your name, young storyteller?")
12
- print(child_name)
13
  story_theme = st.selectbox("What would you like your story to be about?",
14
  ["Space Adventure", "Magical Forest", "Underwater World", "Dinosaur Discovery"])
15
 
 
9
 
10
  # User input
11
  child_name = st.text_input("What's your name, young storyteller?")
12
+ st.write('Your name is ', child_name)
13
  story_theme = st.selectbox("What would you like your story to be about?",
14
  ["Space Adventure", "Magical Forest", "Underwater World", "Dinosaur Discovery"])
15