if len(sys.argv) == 2 and sys.argv[1] == "english":
PHRASE_FIRST == True
Actually I do know the function of these codes, but when I type into only 1 argument when I try to run it, the result is no different from the one when I follow the code typing into 2 arguments and the second one is "english".From my understanding, it supposes to be different in subsequent code.
for snippet in snippets:
phrase = PHRASES[snippet]
question, answer = convert(snippet, phrase)
if PHRASE_FIRST:
question, answer = answer, question
And also, I don't know what's this line for... to exchange values? But I didn't see any changes when the PHRASE_FIRST is True or False.