Reputation: 1
i'm just getting into programming and i've installed VScode and i've been using python 3.6. When i enter a simple code like:
print("Hello world!")
NAME = input("What's your name?")
print(NAME)
And when i run debug it appears the print Hello world! and the input "What's your name?" and i type whatever, and it doesn't print the NAME afterward. Thank you in advance for the time taken to answer me.
Upvotes: 0
Views: 227
Reputation: 11
please use IntegratedTerminal ratherthan internalTerminal Maybe you can see it: https://github.com/DonJayamanne/pythonVSCode/wiki/Capture-User-Input-via-input()-or-raw_input()
Upvotes: 1