- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
How python code works? What is Indentation in Python? #python #interview #job #shorts #youtubeshorts
🧱 Python Indentation – Brief Explanation
In Python, indentation means adding spaces or tabs at the beginning of a line to define the block of code.
Unlike other languages (like C, Java, or JavaScript) that use { } brackets, Python uses indentation to show which code belongs to which block (like inside if, for, while, function, etc.).
🧩 Why Indentation is Important
It tells Python which statements belong together.
Without correct indentation, your code will give an IndentationError.
It makes the code clean, readable, and structured.
✅ Example
x = 5
if x != 10:
print("x is not eaual to 10")
print("This line is inside the if block")
print("This line is outside the if block")
Explanation:
The two indented print() lines are part of the if block.
The last print() is not indented, so it runs outside the if block.
⚠️ Important Rules
Use the same number of spaces in the same block (recommended: 4 spaces per indentation level).
Don’t mix tabs and spaces — it causes errors.
Indentation defines scope — functions, loops, conditionals, and classes rely on it.
🧠 Example with Function
def greet():
print("Hello")
print("Welcome to Python!")
greet()
Here, both print statements are indented — they belong to the function greet().
💡 In Short
Indentation = Structure of Python Code
It tells Python where a block starts and ends.
Without proper indentation, Python won’t run your code.
Видео How python code works? What is Indentation in Python? #python #interview #job #shorts #youtubeshorts канала BhanuSharesTech
In Python, indentation means adding spaces or tabs at the beginning of a line to define the block of code.
Unlike other languages (like C, Java, or JavaScript) that use { } brackets, Python uses indentation to show which code belongs to which block (like inside if, for, while, function, etc.).
🧩 Why Indentation is Important
It tells Python which statements belong together.
Without correct indentation, your code will give an IndentationError.
It makes the code clean, readable, and structured.
✅ Example
x = 5
if x != 10:
print("x is not eaual to 10")
print("This line is inside the if block")
print("This line is outside the if block")
Explanation:
The two indented print() lines are part of the if block.
The last print() is not indented, so it runs outside the if block.
⚠️ Important Rules
Use the same number of spaces in the same block (recommended: 4 spaces per indentation level).
Don’t mix tabs and spaces — it causes errors.
Indentation defines scope — functions, loops, conditionals, and classes rely on it.
🧠 Example with Function
def greet():
print("Hello")
print("Welcome to Python!")
greet()
Here, both print statements are indented — they belong to the function greet().
💡 In Short
Indentation = Structure of Python Code
It tells Python where a block starts and ends.
Without proper indentation, Python won’t run your code.
Видео How python code works? What is Indentation in Python? #python #interview #job #shorts #youtubeshorts канала BhanuSharesTech
python learn python python tutorial python for beginners python programming what is python python explained python course python step by step python example python basics for beginners python learning python code python syntax python language python data types python variables python strings python comments python indentation python input python output python print python casting python operators python if else python for python functions
Комментарии отсутствуют
Информация о видео
26 октября 2025 г. 17:55:11
00:02:33
Другие видео канала





















