diff --git a/Scripts/API/Google-Py Translator/main.py b/Scripts/API/Google-Py Translator/main.py index 158bd2701..1a8aeff0a 100644 --- a/Scripts/API/Google-Py Translator/main.py +++ b/Scripts/API/Google-Py Translator/main.py @@ -53,7 +53,7 @@ def from_file(src, dst): print("\nTranslated text -> \n\n{}\n\n".format(output)) print("-" * 100) - x = input("\nSave output to a file? y/n : ") + x = input("\nSave output to a file? y/n : ").lower() if x == "y": x = input("Enter file name : ") @@ -79,7 +79,7 @@ def main(): """ - choice = input(prompt) + choice = input(prompt).lower() if choice == "q": print("Bye")