Spaces:
Build error
Build error
h-aida commited on
Commit ·
5b4e9d7
1
Parent(s): ca3f307
表示の改善
Browse files- kasumi_ui.py +3 -1
kasumi_ui.py
CHANGED
|
@@ -13,7 +13,9 @@ def kasumi_ui():
|
|
| 13 |
st.write(f"エネルギー数: {num_energy}")
|
| 14 |
|
| 15 |
st.write("履歴")
|
| 16 |
-
st.write(ks.history)
|
|
|
|
|
|
|
| 17 |
|
| 18 |
|
| 19 |
|
|
|
|
| 13 |
st.write(f"エネルギー数: {num_energy}")
|
| 14 |
|
| 15 |
st.write("履歴")
|
| 16 |
+
# st.write(ks.history)
|
| 17 |
+
str_hist = ["o" * i + "x" for i in ks.history]
|
| 18 |
+
st.write(str_hist)
|
| 19 |
|
| 20 |
|
| 21 |
|