After pyinstaller packaged the py3 program, input could not recognize the string because of the English words with special symbols.

After

pyinstaller has packaged the py3 program, if the string of input is pure English, it can run normally. But if input has an English word with a special symbol, the string is not recognized, for example:

word = input()---->"Al Hinkiyah"
print(word)----->"Al Hin"

the above phenomenon will not occur with self-contained IDE or pycharm

Mar.04,2021
Menu