The below python code works perfectly well in Visual Studio and Python IDLE. But when I write it in VISUAL STUDIO CODE, all the 4 print commands that come after the input value are not processed.
print ('hello world')
print ('hello world')
message = raw_input ('type message ')
print ('message')
print ('statement 1')
print ('statement 2')
print ('statement 3')
print ('statement 4')
For example, when I fill in the input with "my message", it just prints:
hello world
hello world
type message
my message
And doesn´t execute the 4 print commands that come after the input. The expected output would be:
hello world
hello world
type message
my message
statement 1
statement 2
statement 3
statement 4
Any idea why Visual Studio Code does not process the remaining 4 print commands?