Skip to playerSkip to main contentSkip to footer
  • 5/18/2025
In Python, conditional statements allow a program to execute different code blocks based on whether a condition is true or false. The primary conditional statement is the if statement, which can be extended with elif (else if) and else clauses.

Category

📚
Learning
Transcript
00:00When I introduced you to Python programming, I told you that programming is a house.
00:06There is a house, and there are two things that are basically two things.
00:13The first thing is the material, and then there is a process on the material.
00:24So we can create a process of a material, or a chute, or a droom.
00:33The process.
00:35The data types of materials we have covered all the materials.
00:43We need a force to create a material, which we can use a material to create a shape,
00:51use कर सके
00:51हमें एक ऐसा प्रोसेस चाहिए
00:53अब उस प्रोसेस के अंदर
00:56सबसे पहले चीज जो हम सीखने लगे हैं
00:59वो है decision making
01:01decision making से मतलब ये
01:04कि हम अपने computer program
01:06अपने material को
01:07इस तरीके से mold करना जाते हैं
01:10कि depending upon the condition
01:12वो decision ले सके
01:14वो left या right जाने की
01:18उसके अंदर काबलियत हो
01:19अब वो कैसे जाता है
01:20उसके लिए हम use करते है keyword if
01:23if और वो follow करता है
01:25condition के साथ
01:26ठीक है उसके बाद हमारे पास
01:29एक block of code होता है
01:30ठीक है
01:33तो
01:33आने वाले subsequent sections में
01:38sorry lectures में
01:39आप देखेंगे कि हम जो भी
01:41discuss करेंगे हम लोग process
01:43के बारे में discuss करेंगे अब और immediate next lecture के अंदर हम लोग if conditional के बारे में बात करेंगे
01:50करेंगे

Recommended