Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -85,10 +85,11 @@ def get_nouns(text=text,steps=1):
|
|
| 85 |
a="Z"
|
| 86 |
|
| 87 |
step_allot=char_len*steps
|
|
|
|
|
|
|
| 88 |
div_steps=int(noun_cnt/step_allot)
|
| 89 |
-
|
| 90 |
print(div_steps)
|
| 91 |
-
div_remain=noun_cnt%step_allot
|
| 92 |
print(div_remain)
|
| 93 |
steps_mult=div_remain*char_len
|
| 94 |
#steps_mult=div_remain*char_len
|
|
|
|
| 85 |
a="Z"
|
| 86 |
|
| 87 |
step_allot=char_len*steps
|
| 88 |
+
div_raw=(noun_cnt/step_allot)
|
| 89 |
+
print(div_raw)
|
| 90 |
div_steps=int(noun_cnt/step_allot)
|
|
|
|
| 91 |
print(div_steps)
|
| 92 |
+
div_remain=(noun_cnt%step_allot)/10
|
| 93 |
print(div_remain)
|
| 94 |
steps_mult=div_remain*char_len
|
| 95 |
#steps_mult=div_remain*char_len
|