Python Boolean Data Types, Comparison Operations, and Logical Operations

preview_player
Показать описание
In this video in the Python tutorial for beginners, I discuss boolean data types, along with operations that work on boolean data. Specifically comparison operations and logical operations.

⏰ Timestamps:
00:00 | Introduction
00:15 | What are boolean data types?
02:27 | What does boolean mean?
04:07 | Writing code using boolean data types
06:35 | Comparison operations
-- 09:21 | Difference between equality operator and assignment operator
12:35 | Logical operations
-- 13:34 | Not operator
-- 14:12 | And and Or operators

Resources:

Courses:

Where you can find me:

#python #pythonforbeginners #pythontutorial #afternerd
Рекомендации по теме
Комментарии
Автор

you are the I wish my prof was like that..

bgtqfil
Автор

You are a brilliant teacher One of the best on Youtube Thank you for all your help God bless you

Manibutt
Автор

Wow compared to Kaggle this is so much more helpful. I feel like I am truly learning when 2 conditions return a true or false value. Thank you for these videos!!!!

danielvelasco
Автор

Choukran akhi I learned english and coding in the same time with your videos

dnasredine
Автор

Excellent! Very good video I think. Good length as well, I tend to watch your videos many times…

garfusmaximusify
Автор

Thanks..
Watching your videos for learning Python

sprittube
Автор

Great video bro, thank you. I learned a lot from your videos. Please keep filming those videos.

nikolar
Автор

Why output are same? when I use .copy()






old_list = [[1, 2, 3], [4, 5, 6], [7, 8, 'a']]
new_list = old_list.copy()
old_list[2][2] = 10
print('Old List:', old_list)
print('New List:', new_list)







Output:
Old List: [[1, 2, 3], [4, 5, 6], [7, 8, 10]]
New List: [[1, 2, 3], [4, 5, 6], [7, 8, 10]]

mateenbutt