Module 1 — Python foundations · Python Introduction
Python Introduction
Programming · Explain → Code → Try → Output → Practice → Quiz
What you will learn
- print to see a value
- 4-space indent for blocks
- No import/open in this runner
What will you learn?
Python is the first language many Sharda students type because the first lines look like English.
The core idea
Python runs from the top line down; print shows a value, and 4-space indentation marks a block (no braces for if/for in this classroom). This LMS has no video; the coding lab is beginner-only: print, input, int, if, for-range, lists — no import, open, files, or network. Completing this course does not make you a software engineer.
Key points
- print to see a value
- 4-space indent for blocks
- No import/open in this runner
Example
print(40 + 20) shows 60 — a CSC fee total without a file or a library.
print(40 + 20)
Try this
- Write one Python line that shows the number 5.
Practice
Write one Python line that shows the number 5.
Question 1
The Sharda classroom Python runner…
Summary
Beginner subset on purpose. No video in this LMS.
Summary
Beginner subset on purpose. No video in this LMS.

