Hey guys , myself Ayush ive just started learning python as i’m an JEE aspirant and want to persue in AI-ML (CS) , but i dont know where to start from . i need your help , can someone just tell me where do i get an app where i can practice python
Python is a programming language, you can install it in your windows machine, and then run it from the terminal or run python files from the terminal
if you look at your python curriculum https://www.freecodecamp.org/learn/python-v9/ the second module is about installing and working with python locally
A simple way to get started is to install Python from the official installer and use IDLE first. Since it comes bundled with Python, you can start writing and running code immediately without configuring extra tools.
If you want features like code completion, integrated debugging, and project management, Visual Studio Code is a solid option once you’re comfortable with the basics. It has good Python support and is widely used, but it does require a little initial setup.
If your goal is to learn rather than build large projects right away, keeping your tools simple can make the learning process easier. You can always switch to a more advanced editor later without changing the Python code you’ve already written.