HaggiVaggi commited on
Commit
09c5170
1 Parent(s): ad15be2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -53,7 +53,8 @@ if st.button("Сгенерировать 🎲"):
53
 
54
 
55
 
56
- for i in range(5): st.markdown(f"<span style='font-size:{20}px; color:purple'>{random_rows['movie_title'].iloc[i]}</span>", unsafe_allow_html=True)
 
57
  col1, col2 = st.columns([2, 1])
58
  col1.info(random_rows['description'].iloc[i])
59
  col1.markdown(f"**В ролях:** {random_rows['actors'].iloc[i]}")
 
53
 
54
 
55
 
56
+ for i in range(5):
57
+ st.markdown(f"<span style='font-size:{20}px; color:purple'>{random_rows['movie_title'].iloc[i]}</span>", unsafe_allow_html=True)
58
  col1, col2 = st.columns([2, 1])
59
  col1.info(random_rows['description'].iloc[i])
60
  col1.markdown(f"**В ролях:** {random_rows['actors'].iloc[i]}")