Update app.py
Browse files
app.py
CHANGED
|
@@ -96,12 +96,11 @@ if (st.checkbox('الاستعانة بالرسم البياني', value=False)):
|
|
| 96 |
i+=1
|
| 97 |
if (i==10):
|
| 98 |
break
|
| 99 |
-
res_df = pd.DataFrame.from_dict(dict_res)
|
| 100 |
-
res_df.index += 1
|
| 101 |
-
st.dataframe(res_df)
|
| 102 |
b = time()
|
| 103 |
exec_time = (b-a)
|
| 104 |
exec_time_plm = (finish-start)
|
| 105 |
-
st.write(f'
|
| 106 |
-
st.write(f'ثانية {str(exec_time)[:2] } :الوقت المستغرق باستعمال الرسم البياني')
|
| 107 |
|
|
|
|
| 96 |
i+=1
|
| 97 |
if (i==10):
|
| 98 |
break
|
| 99 |
+
res_df = pd.DataFrame.from_dict(dict_res)
|
| 100 |
+
res_df.index += 1
|
| 101 |
+
st.dataframe(res_df)
|
| 102 |
b = time()
|
| 103 |
exec_time = (b-a)
|
| 104 |
exec_time_plm = (finish-start)
|
| 105 |
+
st.write(f'{str(exec_time)[:2] } :الوقت المستغرق باستعمال الرسم البياني')
|
|
|
|
| 106 |
|