Python
One of my bucket list of this year, though delayed by almost 8 month, finally my first dive in Python, here it is all about.
Python is the most powerful language where you can do anything and everything , let us first check if you already have Python installed in your system. Open command prompt and use the below command.

You will get the version of Python like above if you already have Python installed , in my case it is Python 3.10.6 . And in case if you do not have please navigate to Download Python | Python.org and have the latest version installed on your system. Once you are done you will have like below.

Click on IDLE (Python 3.10 64-bit) and you are welcome to do anything you like, I prefer to program in notepad and save it as HelloPython.py
print(“Hello Python”)

And now we are ready to compile and execute our first python script. Lets have a command prompt and type in the file name and there we go.
