Update app.py
Browse files
app.py
CHANGED
|
@@ -52,6 +52,9 @@ def google(name):
|
|
| 52 |
n=0
|
| 53 |
for i in result:
|
| 54 |
if n!=0:
|
|
|
|
|
|
|
|
|
|
| 55 |
text = text +str(n)+"\t"+i+"\n\n"
|
| 56 |
n=n+1
|
| 57 |
return text
|
|
|
|
| 52 |
n=0
|
| 53 |
for i in result:
|
| 54 |
if n!=0:
|
| 55 |
+
if i.isdigit():
|
| 56 |
+
i = i.split(".",1)
|
| 57 |
+
i = i[1]
|
| 58 |
text = text +str(n)+"\t"+i+"\n\n"
|
| 59 |
n=n+1
|
| 60 |
return text
|