()
| 91 | |
| 92 | #main body of the program |
| 93 | def main(): |
| 94 | |
| 95 | word = input("Enter the word you want to search: ") |
| 96 | output = translate(word, file) |
| 97 | if type(output) == list: |
| 98 | for item in output: |
| 99 | print(item) |
| 100 | else: |
| 101 | print(output) |
| 102 | |
| 103 | #setting default focus to main function |
| 104 | if __name__ == "__main__": |
no test coverage detected