Arafath10 commited on
Commit
0a3c535
·
1 Parent(s): ab0b818

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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