seawolf2357 commited on
Commit
3a21b5c
โ€ข
1 Parent(s): b89f74f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -199,9 +199,9 @@ if selected_menu == "Home":
199
  ]
200
 
201
  # ์ด๋ฏธ์ง€๋“ค์„ ํ•œ ์ค„์— 4์žฅ์”ฉ ๋ฐฐ์น˜
202
- for i in range(0, len(image_files), 4):
203
- cols = st.columns(4) # 4๊ฐœ์˜ ์—ด ์ƒ์„ฑ
204
- for col, img_file, img_text in zip(cols, image_files[i:i+4], image_texts[i:i+4]):
205
  with col:
206
  st.image(img_file, use_column_width=True)
207
  st.caption(img_text)
 
199
  ]
200
 
201
  # ์ด๋ฏธ์ง€๋“ค์„ ํ•œ ์ค„์— 4์žฅ์”ฉ ๋ฐฐ์น˜
202
+ for i in range(0, len(image_files), 3):
203
+ cols = st.columns(3) # 4๊ฐœ์˜ ์—ด ์ƒ์„ฑ
204
+ for col, img_file, img_text in zip(cols, image_files[i:i+3], image_texts[i:i+3]):
205
  with col:
206
  st.image(img_file, use_column_width=True)
207
  st.caption(img_text)