thiyagab commited on
Commit
16eb088
1 Parent(s): 969b5ea

Display index

Browse files
Files changed (1) hide show
  1. semanticsearch.py +1 -1
semanticsearch.py CHANGED
@@ -68,7 +68,7 @@ def find_similarities(input: str):
68
  def kural_definition(index: int):
69
  response = ''
70
  print(en_translations[index])
71
- response += "\n".join(kurals[index]) + "\n"
72
  response += ta_translations[index]+"\n"
73
  response += en_translations[index] + "\n\n"
74
  print("\n".join(kurals[index]))
 
68
  def kural_definition(index: int):
69
  response = ''
70
  print(en_translations[index])
71
+ response += str(index+1)+'. '+"\n".join(kurals[index]) + "\n"
72
  response += ta_translations[index]+"\n"
73
  response += en_translations[index] + "\n\n"
74
  print("\n".join(kurals[index]))