how to get power value in Python terminal - command

I am facing an issue in getting power values.. I wrote commands in visual studio code.
print(23) and got the required result .but when i wrote 23 in the python terminal I didn't get the same result.

Related

VS_Code : Shell Integration Failed To Activate

When i hover on my vscode terminal name: (in terminal's upper right corner named "Powershell")
it shows : shell intergartion failed to activate,
how to solve this error, while
I tried installing vs code again but still no change, and also installed powershell 7
There are a few potential solutions for this issue.
Make sure that you have the latest version of VS Code and the Shell Integrate extension installed.
Check that the integrated terminal in VS Code is set to the shell you want to use (e.g. PowerShell, Command Prompt, Bash).
Try running VS Code as an administrator.
If you are using Windows, try adding the path of the shell you want to use (e.g. C:\Windows\System32\bash.exe) to the "terminal.integrated.shell.windows" setting in your VS Code settings.
You can also try reinstalling vscode and the extension.
If none of the above solutions work, you can try searching for specific error messages in the output panel of vscode or in the output of the terminal.

(eval):1: parse error near `typeset' Shows in Terminal

I used to debug javascript in VS Code's Terminal.
Recently, I see (eval):1: parse error near "typeset" in my VS Code's Terminal and I cannot debug .js anymore. I googled for a solution but didn't see any.
Don't know for sure if this causes the problem: I wanted to open VS Code from Mac's Terminal, so that in VS Code, I Used Shell to install code in PATH. After that, I see (eval):1: parse error near "typeset" in both Mac's Terminal and VS Code's Terminal.
Please give a hand. Thanks
UPDATE: I have tried to uninstall the code command from PATH in VS Code, but this error message still show in Terminal.

Fortran code runs but doesn't display any input

Hi I am using Visual Studio code to try to run some fortran code. I have two issues. Firstly, I am able to run the program in the command line using the fortran compiler I have installed (I know it runs as when there is an error it flags it in the command line). However, the issue is that when I put code with no error it runs, however doesn't display the input I expect. This is the code, which I copied from a youtube tutorial.
program Test
implicit none
character*20 :: name
print *, "Name:"
read *, name
print *, name
end program Test
When it is run, the command line command runs and doesn't present an error, but nothing is output, just a new line. Any ideas on what is causing this.
Also I would like to run it directly from Visual Studio Code, however I am unable to link the compiler to VSC. I have done it before with Python code, and when I press F5 it will run, however when I do the same with the fortran file, it just gives a menu:
I have installed the Modern Fortran extension for VSC. Any idea on what is happening?
Thank you in advance.

Error when launching Terminal in Visual Studio Code (terminated with exit code: 3221225477)

I'm a new user of Visual Studio Code and I came across the following error (see below) when trying to launch a Terminal inside VS Code.
The terminal process "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" terminated with exit code: 3221225477.
I've tried fixing this by following the instructions on [Visual Studio Code Troubleshoot Terminal] (https://code.visualstudio.com/docs/supporting/troubleshoot-terminal-launch) and also going through the Get Started documentation on the Visual Studio Code website.
I've also tried copying the error message and pasting on Google to search for a solution but only one relevant site came up here and I still could not find a fix.
I'm using a Dell XPS machine running Windows 10 (x64) and Visual Studio Code 1.51.0 (x64 UserSetup).
Can someone please assist? Thanks in advance!
Try the following:
If your computer is running powershell, turn it off.
Control Panel -> Programs -> Turn Windows features on of off
Search Window Powershell 2.0 -> Uncheckbox -> OK
Restart

How do I stop Visual Studio Code from displaying my file directory?

Hi I'm trying to learn Python and this is the first time I use Visual Studio Code so I'm a complete beginner.
In the lessons that I'm following, the output of the code is visible in debug console, like the screenshot below:
In my installed version of Visual Studio Code (Win 7 32bits) I get all the output in the terminal section and it also shows my file directory, which I find distracting.
I'd like to set up Visual Studio Code so I get roughly the same results as the first picture, without my file directory being printed out once for every line of code... Is that possible?