Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 3.07 KB

File metadata and controls

58 lines (39 loc) · 3.07 KB

Basic-Python

About 💡

Hey, here you'll find some notes I took with examples and challenges on my way to learn the fundamentals of Python.

You will also discover some simple projects created using the concepts here. 😉

If you want to solve these challenges, just copy and paste the following code in your terminal to clone this repo:

git clone https://github.com/JS-Bej/Basic-Python.git

Once it's cloned, you're ready to open this project in your favorite IDE.



⚙️ How to install Python on your computer ⚙️

  1. Go to the official Python website:
    https://www.python.org/downloads/

  2. Download Python:
    Click the yellow "Download Python" button. The website will suggest the best version for your operating system (Windows, macOS, or Linux).

  3. Run the Installer:

    • Open the downloaded file.
    • Important: On Windows, check the box that says “Add Python to PATH” before clicking “Install Now.”
    • Follow the installation steps.
  4. Verify the Installation:

    • Open your terminal (Command Prompt on Windows, Terminal on macOS/Linux).
    • Type:
      python --version
      or
      python3 --version
    • You should see the installed Python version.

If you liked this project or just want to save it for later, feel free to star this repository