Learn Python (8+ hours) - Become Professional Python Developer Full Course (Part 4)

preview_player
Показать описание
Learn Python (8+ hours) - Become Professional Python Developer Full Course (Part 4)

#PythonProgramming #PythonTutorial #PythonForBeginners #PythonFromScratch #PythonInstallation #PythonRun #PythonExecute #PythonLoops #PythonOOP #PythonClasses #PythonFunctions #PythonDataTypes #PythonFullCourse #PythonZeroToHero #LearnPython #Python101 #PythonBasics #PythonLanguage #PythonCoding #pythoncoder

Welcome to Part 4 of your Python Programming course! In this video, we'll be covering the fundamental control structures in Python, including "if," "if-else," and "elif." You'll learn about Python Indentation and the important role it plays in the language. We'll also dive into Operators, including Logical and Comparison Operators, and understand the difference between Truthy and Falsy values. I'll also introduce you to the Ternary Operator and explain the concept of Short Circuiting. You'll learn about Identity Operators and the difference between the "is" operator and the equality operator. Moving on, we'll cover Loops in Python, including the "for" loop and nested loops. We'll also explore "while" loops and how to use them effectively. This video is essential for anyone looking to master the art of Python programming!

Each parts plays significant role and its advisable for you to start from part1.

Timestamps:
00:00 Control Structures in Python if – else statement
07:05 Control Structures in Python elif
13:46 Importance of Python Indentation
16:56 Operators in Python, Logical, Comparison
23:51 Truthy vs Falsy values in Python
32:22 Ternary Operator in Python
36:31 Short Circuiting in Python
38:47 Identity Operators ‘is and is not’
42:46 Difference between ‘Is’ operator vs Equality Operator in Python
51:16 Loops in Python, for loop and iteration
58:32 Nested Python ‘For’ Loops and Nested If statements
1:06:16 While loops in Python

DOWNLOAD THE CODE and FILES:

In this part we will learn:
1) Control Structures If, if-else, elif
2) Python Indentation
3) Operators, Logical and Comparison Operators
4) Truthy vs Falsy values
5) Ternary Operator
6) Short circuiting
7) Identity Operators
8) Is operator vs equality operator
9) Loops in Python – For loop
10) Python Nested loops (for-loops)
11) While loops

EDUCATION SHOULD BE FOR FREE If you like my course please subscribe, like and share with your friends.
If you like to learn more about Python I have TWO BOOKS on Amazon:

#1)PYTHON – Master Python OOP Programming with One Guide:

#2) Advanced Python:

Parts:
Part1:

Part2:

Part3:

Рекомендации по теме
Комментарии
Автор

Great for now no question everything is clear here thank you

Nurulllla
Автор

Hello Sir, If nested LOOP, I guess these code also working fine as we can ignore the higher limits as elif statement enters when first condition doesn't satisfies
grade = 75

if grade >=49:
if grade >=85:
print('HD')
elif grade>=75:
print('D')
elif grade >=65:
print('C')
elif grade >=50:
print('P')


else:
print('F')

pallabharathkumar
Автор

Hi there everyone. I have created a full Python course and make sure you start watching it from the part1 in order to make sense. 'Yes I know I have said id Okay so many times in this course but I promise I would not do that one in the next one! My mistake at the time of recording I didn't thought about it. Take care and enjoy' Please like, comment and subscribe

theodorecoding