Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Lab 0: Compiler Setup & Environment Check

Lesson 1 of 55 in the free Python Programming Lab notes on Siksha Sarovar, written by Rohit Jangra.

Program Statement

Verify that the built-in Python compiler (Pyodide, running in your browser) is ready to run the Python Programming Lab practicals.

Compiler Info

PropertyValue
RuntimePyodide (CPython compiled to WebAssembly)
Packagesnumpy, matplotlib auto-load when imported
I/OConsole (stdout), file I/O via an in-browser virtual filesystem

How to Use

  1. Click RUN CODE to execute — no installation needed, it runs right in the browser tab.
  2. Programs that would normally use input() use hardcoded sample values instead (commented alternative shown), so every practical runs with one click. Edit the values and re-run to test other cases.
  3. Practicals that plot a chart (NumPy/Matplotlib, experiments 50–54) render the image directly below the console output.

Installing Python on Your Own Machine

For the actual lab record, install Python locally:

  1. Go to python.org/downloads and download the latest Python 3 installer for your OS.
  2. Run the installer — on Windows, tick "Add Python to PATH" before clicking Install.
  3. Verify from a terminal: python --version.
  4. Write code in IDLE (bundled with Python) or an editor like VS Code with the Python extension.