Using Boolean in Python (Python Tutorial #11)

preview_player
Показать описание
Using Boolean in Python - let's go!

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

This probably wont be seen but this is by far the greatest python course by far unless you want to sit through a 7-hour long vid and doze off in the first 30 mins of it. Thanks man

Valentina-lvvz
Автор

You’re one of the best teachers I’ve seen anywhere on the internet. Thank you so much for taking your time to help a bunch of strangers. You’re an amazing person

DrummingGamer
Автор

i've binged watched this whole python tutorial playlist

danielsharma
Автор

I binged watched all of ur videos on python and I must say it was a great start for me...Am a business analyst and am looking for more videos on how to use python for data analytics. Thank you so much for this tutorial series. It has been such an amazing learning experience. You are a fantastic teacher. Keep up the good work :)

levtan
Автор

I am new to coding and have been looking for a good example on how to use booleans.
After a lot of searching and confusion, I found you.
Genius and an easy subscribe. I can tell I am going to smash through your videos <3
Thanks heaps

godlyas
Автор

Love this series Friend, You are easy to understand, others go through it too fast expecting we already know it. You Do it Perfectly From Scratch

MagmaBlitzer
Автор

I love your videos and immediately added this python series to my watchlist. I am in college and i am using this summer to intensely train for coding interviews. Python is such a neat language, I love it. In the future, if you can show us what kind of task people do in real teams and how they compare to school projects (clear specs, usually in c++, and very very long where you have to check for everything yourself) that would be even better! <3 Thanks YK!

supremepancakes
Автор

You have taught us a lot of skills so far. Your videos are great. But I have been wondering how to apply the skills we have learned so far. Many people on many videos including you have set just learning a lot of concepts is not enough, but we also have to apply them by doing projects. But I don't understand how to apply my skills in real life. So can you make a video or atleast reply by a comment to this question?

ismamkhan
Автор

he mentioned in his earlier videos that in jupyter notebook you don't have to write 'print' before a function for getting an output, but in other ide you've to use 'print'. Just don't be confused.

mahibulbhuiyan
Автор

I started with Cleverprogrammer and ended up with csdojo. My Python knowledge is now complete. I watched like 10000 videos.

niranjan
Автор

I love watching your videos even though I dont use python LOL! The way you teach and explain things is wonderful! Keep it up!

christiano
Автор

Could please make a video on file handling?

blackheart
Автор

#fuction 3 regards from bolivia
def are_you_sad(if_rainy, has_umbrella):
if if_rainy and not has_umbrella:
return True
else:
False
if are_you_sad(True, False):
sorry tomorrow will be your best day")
else:
print("it not the best day but smile")

marceldelcastillovelarde
Автор

You saved my day I was learning like 3 hours straight on sololearn and I didn't understand it but now I do thank you very much

minasabeer
Автор

i love the style you teaching us that make me watch all of the series please keep up in this lovely language :)

drcodr
Автор

This is the first time I learn something with English version. You instruct me very easy to comprehend! You helped me study Python 3 generally in just about 3h. Thank you very much! (June 20 2018)

taminhkieu
Автор

Please upload these videos more often, and give us more complex tasks with various solutions.
That would be a great way to learn and probably the fastest.
I love finding so many different solutions when searching through the comments or other forums.

kristijanross
Автор

You're the only reason I won't leave my As level CS paper blank

m_m
Автор

How do I remove the underscores and keep it with spaces? I don't like how it shows on the checkbox

mopolo
Автор

def c_greater_than_d_plus_e(c, d, e):
if c > d + e:
return True
else:
return False

print(c_greater_than_d_plus_e(3, 1, 2))

aribalmarceljames