I am trying to run this file in MS visual studio 2015:
# This program says hello and asks for my name.
print('Hello friend!')
print('What is your name?') # ask for their name
myName = input()
print('It is good to meet you, ' + myName)
print('The length of your name is:')
print(len(myName))
I tried to run this in visual studio but after I input the "myName" field, the output window closes instantly. I tried to change the environment to Python3.4 and also IronPython, but the same result in both environments. I tried to run this file in Python3.4.2 Shell and there it works fine. Can you please troubleshoot this problem thanks