3 | Boolean Expressions | Python for Complete Beginners

preview_player
Показать описание
# Learning Boolean Expressions in Python
# Boolean exp - that results in True or False
print(10 > 20)

# comparison operators - results in True or False
# >
# <
# >=
# <=
# ==
# !=

x = 10
y = 20
print(x > y)
print(x < y)
print(x == y)
print(x != y)

# logicla operators
# and | or | not
# and True if both exp are true
# or True if any one exp is true
# not True if exp is false

x = 10
y = 20
z = 30

print(x < y or z > y)
print(not(x>y))

▬▬▬▬▬▬▬

Every Like & Subscription gives me great motivation to keep working for you
You can support my mission for education by sharing this knowledge and helping as many people as you can

If my work has helped you, consider helping any animal near you, in any way you can

Never Stop Learning
Raghav Pal

▬▬▬▬ USEFUL LINKS ▬▬▬▬

Python Boolean expressions tutorial for beginners
Learn Boolean expressions in Python with this beginner tutorial
A comprehensive guide to Boolean expressions in Python
Everything you need to know about Boolean expressions in Python

▬▬ CI | CD | DEVOPS ▬▬

▬▬ UI TESTING ▬▬

▬▬ API TESTING ▬▬

▬▬ MOBILE TESTING ▬▬

▬▬ PERFORMANCE TESTING ▬▬

▬▬ SOURCE CODE MANAGEMENT ▬▬

▬▬ IDE ▬▬

▬▬ PROGRAMMING ▬▬

▬▬ BUILD TOOLS ▬▬

▬▬ CLOUD SERVICES ▬▬

▬▬ DATA FORMATS ▬▬

▬▬ OTHERS ▬▬


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

Hi raghav this playlist of pyhton can I only need to go with for Automation python or need to learn any extra in core python? Pls do needful on this point

wvtobez
Автор

Can you please say how many videos for python is pending in this series, as I wish to learn in one sit.

tfxqohl
Автор

Please share the python complete learning link in your description box. I am able to see only Boolean expression only

lakshmiprasanna