The language is Python (at least my code is) and this problem is way into the weeds for a new learner so best set this one aside and go into the Learn Python 3 course track to get your feet wet with that language.
If I may ask, where does your interest lie? Programming, in general or some kind of web development? If programming is your goal, Python is a good starting language, though many would suggest starting with JavaScript which can be leveraged in web and application projects that don’t require any extra software. Everything is in the browser, already. HTML, CSS, and JavaScript. Either way, the choice is yours. But, start at the beginning, not in a computer science or data science track.
If you want to work off line on Python, go to python.org and download the latest version of Python. It can be installed in your logged in user account (local machine) so you don’t need to exercise an Admin install. On a Windows machine it will install in,
C:\Users\%yourusername%\AppData\Local\Programs\Python\Python311\
Be sure to install a taskbar button for easy access. That will open the Interactive Shell from which you can create and open files (File menu).
When saving, let Python save to the Scripts folder (the default) and organize your work in that folder so all your Python scripts are in one place.
C:\Users\%yourusername%\..\Python311\Scripts\
Until you are really settled into learning the language don’t explore other IDE’s or install any libraries. Work with the Shell and get familiar with how to create files, open files, and run code. Commands typed directly into the shell are executed immediately.
>>> print ('Hello World!')
Hello World!
>>>
If JS is to be your starting language, there is nothing to install, except maybe a free text editor like Notepad++. Learn how to create files, save files, and how to run them in the browser Console.
There are also free sandboxes such as REPL.it, CodePen, and so on where you can write, save and run code online. This is a good place to get started.