I feel like an idiot because I've not even started learning programming and I'm already coming up with problems. I'm setting up VS code and I've been trying to get rid of the PS comments when I type: print(2 + 3 * 6)
It returns
PS C:\Users\Chris> & C:/Users/Chris/AppData/Local/Programs/Python/Python312/python.exe "d:/Learn to Code/Backend/Python/Learning Project 1.py"
20
PS C:\Users\Chris>
Looking on the internet it suggested
https://stackoverflow.com/questions/68068884/visual-studio-code-psneed-explanation-and-how-to-remove-it
Ctrl + Shift + P (Command Palette)
Type: Terminal: Select default profile and hit enter
Select Command Prompt from the options and that should remove the PS
I didn't see anything that matched this suggestion.
Then I found I should install an extension called code runner, which I did, and now I've got the same problem just with a different output.
[Running] python -u "d:\Learn to Code\Backend\Python\tempCodeRunnerFile.py"
20
[Done] exited with code=0 in 0.069 seconds
I just want it to say 20, I don't need to know where I've saved it, I know where it's saved. I also don't need to know it runs quickly, because I just saw it run quickly.
Is what I'm asking just impossible, and I'll just have to tolerate it?
Thanks in advance, apologies in advance for my ignorance.