VSCode cannot read user input while debugging a python code in integratedTerminal
问题 In this two-line python code: string = input("What's your name? ") if string != '': print('Hello, ' + string + '!') While I run debugging, it waits for user input. After typing a name, the Terminal (Python Debug Console) just halts there, the print() line never gets executed. See the screenshot below The launch.json file is below (as default): { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https:/