Conditional Statements (if, elif, else) in Python - Beginner Python Tutorial #2

  Рет қаралды 49,710

Keith Galli

Keith Galli

6 жыл бұрын

Second video in my python tutorial series. In this video we go over everything related to conditional statements in python. If you have any questions feel free to comment down below :)
Python Command Cheat sheet:
www.cheatography.com/paul-ben...
Link to previous video:
• Math & Variables in Py...
Don't forget to SUBSCRIBE to not miss any future tutorials!
-------------------------
Challenge problem I asked at the end of the video:
Write a set of conditional statements to find whether or not a number is a “special” number
Special numbers are defined as numbers less than 100 or greater than or equal to 300 that are perfectly divisible by 3, 7, or both
Print out “Divisble by both” if special number divisible by both 3 & 7
Print out “Divisble by 3” if special number divisible by 3, but not 7
Print out “Divisible by 7” if special number divisible by 7, but not 3
#Print out “Not a special number” otherwise
-------------------------
PYTHON TUTORIAL SERIES:
Why Learn Python? +Setup: • Why Should you Learn P...
1. Math & Variables: • Math & Variables in Py...
2. Conditional Statements (if, elif, else): • Conditional Statements...
3. Functions: • Functions in Python - ...
4. Lists & Tuples: • Lists & Tuples in Pyth...
5. For Loops & While Loops: • For Loops & While Loop...
Learn to Program a game: • How to Program a Game!...
-------------------------
Follow me on social media!
Instagram | / keithgalli
Twitter | / keithgalli
-------------------------
If you are curious to learn how I make my tutorials, check out this video: • How to Make a High Qua...
⭐ Kite is a free AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. I've been using Kite for 6 months and I love it! www.kite.com/get-kite/?...
*I use affiliate links on the products that I recommend. I may earn a purchase commission or a referral bonus from the usage of these links.

Пікірлер: 122
@KeithGalli
@KeithGalli 6 жыл бұрын
Video Outline! 1:16 - Review of Variables 2:54 - "If" Statement Introduction 6:16 - "Else" Statement 8:21 - "Elif" Statement 11:05 - Difference Between If & Elif 11:44 - Equal (==) & Not Equal (!=) 15:30 - "and", "or" 18:33 - Using conditionals with Strings, Booleans, etc... 22:30 - Nested if statements 25:30 - Review of Everything (plus the not statement) 28:05 - Challenge Problem! Thanks for watching! :)
@alisalman8448
@alisalman8448 5 жыл бұрын
U should start a Udemy course Btw!
@mischapipolo1382
@mischapipolo1382 3 жыл бұрын
You're the man Keith :)
@nerdy590
@nerdy590 5 жыл бұрын
You need more attention, I’m really getting what your saying
@eventeklay4618
@eventeklay4618 4 жыл бұрын
Nerdy me too
@andyn6053
@andyn6053 4 жыл бұрын
I love that u give us a challenge at the end of your videos. It gives us the opportunity to practice on what we just learned! That's brilliant and makes your tutorials soo much more effective when trying to learn these concepts! I love your channel and your way of teaching! Greetings from Sweden!
@nastymello2635
@nastymello2635 5 жыл бұрын
Hey man, you do a great job and explain everything very simple for me! Thank you, keep it up man.
@jiachenfeng2217
@jiachenfeng2217 4 жыл бұрын
watching this in 2020, still helpful
@santinosartoris
@santinosartoris 3 жыл бұрын
watching this in 2021, still helpful
@BIucut
@BIucut 2 жыл бұрын
2022 still working
@tobiesmith3203
@tobiesmith3203 5 жыл бұрын
This is very helpful to me! Thank you! I am enjoying learning python through these lessons I will share these videos with my friends who also study programming!
@andrewvk8166
@andrewvk8166 2 жыл бұрын
tysm for these good tutorials its so hard to find youtube tutorials that actually teach you proper code, and not random stuff you need experience to understand. again TYSM!!!
@pranjalmukherji2218
@pranjalmukherji2218 3 жыл бұрын
I had a lot of fun doing the Challenge you told us to do! Thanks a lot for your amazing tutorials! :))))
@juneoriginal
@juneoriginal 4 жыл бұрын
Great video , this is one of the best ones out there
@patrickmbarker
@patrickmbarker 5 жыл бұрын
My new favorite YT teacher. I am reviewing the basics here so I can solidify some skills. Your videos are so helpful.
@KeithGalli
@KeithGalli 5 жыл бұрын
Appreciate the support man! Happy to hear the videos have been helpful
@andyn6053
@andyn6053 4 жыл бұрын
@@KeithGalli great videos man!
@niilonevalainen2884
@niilonevalainen2884 3 жыл бұрын
You are a natural teacher. It's very easy to follow and your voice fits perfectly.
@symnshah
@symnshah 4 жыл бұрын
You are such a great teacher. I would suggest your videos to my students.
@ethantyrrel-walker5480
@ethantyrrel-walker5480 4 жыл бұрын
Awesome videos, Keith! Keep it up!
@KeithGalli
@KeithGalli 4 жыл бұрын
Thanks Ethan!
@kaielival
@kaielival 4 жыл бұрын
Hello. Thank you for making these videos. They really help and are easy to follow. Here's my code: special= 21 if special < 100 or special >= 300: if special % 3 == 0 and special % 7 == 0: print ("Divisible by both") elif special % 3 == 0: print ("Divisible by 3") elif special % 7 == 0: print ("Divisible by 7") else: print ("Not a special number") else: print ("Not a special number")
@glamify524
@glamify524 2 жыл бұрын
sp_num = float(input("What is your number? ")) if sp_num < 100 or sp_num >= 300: div7 = sp_num % 7 div3 = sp_num % 3 if div7 == 0 and div3 == 0: print("Divisible by both") elif div7 == 0: print("Divisible by 7") elif div3 == 0: print("Divisible by 3") else: print("not a special number") else: print("not a special number") Thanks so much for all that you share. This is great practice for us newbies
@MikiD_333
@MikiD_333 3 жыл бұрын
this guy is a programing legend
@danielrodrigo8503
@danielrodrigo8503 3 жыл бұрын
Thank you so much. I loved the video. Here's my code: number = input("Enter you're number") number = int(number) if (number < 100 or number >= 300) and (number % 3 == 0 or number & 7 == 0): if number % 3 == 0 and number % 7 == 0: print("Divisible by both") elif number % 3 == 0 and number % 7 != 0: print("Divisible by 3") elif number % 3 != 0 and number % 7 == 0: print("Divisible by 7") else: print("No a special number")
@kamalbd3163
@kamalbd3163 4 жыл бұрын
Awesome for beginners
@braidinivey2842
@braidinivey2842 2 жыл бұрын
I love the way you teach. It's very easy to interpret and follow, especially for a newcomer. That being said, here is my code: specialNumber = int(input()) if specialNumber < 100 or specialNumber >= 300: if specialNumber % 3 == 0 and specialNumber % 7 == 0: print('Divisible by both') elif specialNumber % 3 == 0: print('Divisible by 3') elif specialNumber % 7 == 0: print('Divisible by 7') else: print('Not a special number')
@sanumioluwafemi7247
@sanumioluwafemi7247 3 жыл бұрын
This is my code. Thanks for making this very easy to understand. spe_num = int(input("Enter any number = ")) if (spe_num < 100) or (spe_num >= 300): if (spe_num%3 == 0) and (spe_num%7 == 0): print ("Divible by both") elif spe_num % 3 == 0: print ("Divisible by 3") elif spe_num % 7 == 0: print ("Divisible by 7") else: print ("Not a special number") else: print ("Not a special number")
@zzegermans
@zzegermans 5 жыл бұрын
Hey Keith, finally found a great teacher . this is my first ever so hope to get your appreciated feedback . A = (here you put any number) A== "special number" A >=300 A
@Genius-rh5lm
@Genius-rh5lm 3 жыл бұрын
Great video thank you! I've learned so much I was stuck on these conditional statements but now I think I'm ready! And I enjoy your sense of humor😃
@ifennaobiezu8578
@ifennaobiezu8578 4 жыл бұрын
Keith... Thanks so much for the video & the challenge question. I am really learning a lot here. See my code below for the challenge question. print('Enter a number and I will tell you if the number is a Special number.') # Enter the number number = int(input('Enter the number: ')) if number < 100 or number >= 300: if number % 3 == 0 and number % 7 == 0: print(number, 'is divisible by both 3 and 7') elif number % 3 == 0 and (not(number % 7 == 0)): print(number, 'is divisible by 3 but not 7') elif number % 7 == 0 and (not(number % 3 == 0)): print(number, 'is divisible by 7 but not 3') else: print(number, 'is not a special number') else: print(number, 'is invalid')
@andyn6053
@andyn6053 4 жыл бұрын
Good job. Although you don't need the "not" part in the nested loops since they are redundant. If they were true, the first if statement would have triggered already. Keep it up mate!
@emmaehnpaulsson9885
@emmaehnpaulsson9885 3 жыл бұрын
Hi, your videos are very helpful and simple to follow. Thanks!! I tried to do the challenge, see down below: number = 303 if number < 100 or number >300: if (number % 3 == 0) and (number % 7 == 0): print("Divisble by both") elif number % 3 == 0: print("Divisble by 3") elif number % 7 == 0: print("Divisble by 7") else: print("Not a special number") else: print("Not a special number")
@jawlian2369
@jawlian2369 3 жыл бұрын
really helped thanks
@jyotikachaubey
@jyotikachaubey 7 ай бұрын
very much helpful salute you from india
@gloriousleader406
@gloriousleader406 2 жыл бұрын
Good video mate :))))
@atomicrhino1194
@atomicrhino1194 3 жыл бұрын
this guy is so smart he should have like 20mil subs
@harshanandantrivedi9412
@harshanandantrivedi9412 Жыл бұрын
Excellent
@csdgay
@csdgay 3 жыл бұрын
i was banging my head against a wall for like 20 minutes trying to figure out why dividing wasnt working, before a friend told me i needed to use the modulo function. the worst part is i went over the modulo part of your last video like 3 times without realizing thats what i needed :P here's my code: number = 21 if number >= 300 or number < 100 and (number % 3 == 0 or number % 7 == 0): if number % 3 == 0 and number % 7 == 0: print("Divides by both") elif number % 3 == 0: print("Divides by 3") elif number % 7 == 0: print("Divides by 7") else: print("not special")
@eventeklay4618
@eventeklay4618 4 жыл бұрын
you are too awesome you need to be teachere
@darwinsexplosions
@darwinsexplosions 6 жыл бұрын
Great video! By the way did you record this late at night?
@KeithGalli
@KeithGalli 6 жыл бұрын
Darwins Explosions thank you! And yeah I probably recorded this very late at night haha. Why do you ask?
@darwinsexplosions
@darwinsexplosions 6 жыл бұрын
Keith Galli during the vid there was a pop up that said wake up in like 7 hours or something like that
@harebear69
@harebear69 4 жыл бұрын
Your a legend... Do you do any udemy courses?
4 жыл бұрын
I was a master teacher at making math simple to my students, now its them who make it hard.... but you are the next (and already here) generation, congrats
@OliCambrayPhotography
@OliCambrayPhotography 5 жыл бұрын
Enjoying the videos buddy! thank you for making them. I've put my solution below. I randomised the number to test it fully as well. Seems to work nicely. import random import math # Special numbers - < 100, >= 300, and divisible by 3,7 or both i = random.randint(0, 500) if i < 100 or i >= 300: if (i % 3) == 0 and (i % 7) == 0: print("Super Special Number ", i) elif (i % 3) == 0: print("Special Little Number ", i) elif (i % 7) == 0: print("Big Special Number ", i) else: print("Not a Special Number", i) else: print("Not a special number", i)
@KeithGalli
@KeithGalli 5 жыл бұрын
Good work :). I like the use of the random numbers, that's a nice touch.
@sasikalaperumalsamy3666
@sasikalaperumalsamy3666 5 жыл бұрын
thank you you are helping me a lot
@morosx3514
@morosx3514 4 жыл бұрын
How do you run the script whenever i press enter on python shell it just creates a new line. (And i cannot download sublime text)
@yasheelhaulkhory7687
@yasheelhaulkhory7687 3 жыл бұрын
a=int(input("entrer votre numero")) if a=300: if a%3==0 and a%7==0: print("se divise par les deux") elif a%3==0 and a%7!=0: print("divisible par 3 seulement") elif a%3!=0 and a%7==0: print("divisible seulement par 7") else: print("pas un numero special") #if you want to do it in french
@LuckyKumar-wb9xm
@LuckyKumar-wb9xm Жыл бұрын
num = int(input("enter your value:")) if num >= 100 and num < 300 or (num % 3 != 0 and num % 7 != 0): print(num , "not a special number") elif num % 3 == 0 and num % 7 == 0: print (num , "divisible by both") elif num % 3 == 0: print (num , "divisible by 3") elif num % 7 == 0: print(num , "divisible by 7") ##not sure if it could be more optimised or if its redundant but here's my code
@wadimgirivenko9507
@wadimgirivenko9507 2 жыл бұрын
Thank you very much number = 7 if number < 100 or number > 300: if number % 3 == 0 and number % 7 == 0: print("Divisible by both") elif number % 3 == 0: print("divisible by 3") elif number % 7 == 0: print("divisible by 7") else: print("not special number") else: print("not a special number")
@Slime_GamerOP
@Slime_GamerOP 4 жыл бұрын
number = 7000 if number =300: if (number % 3) == 0 and (number % 7)== 0: print("Divisble by both") elif (number % 3) == 0: print("Divisble by 3") elif (number % 7) == 0: print("Divisble by 7") else: print("Not a special number")
@Borohoro
@Borohoro 2 жыл бұрын
if number < 100 or number >= 300: print("This is a special number")
@porkiie
@porkiie 4 жыл бұрын
Hi Keith, Great video but what do you use to Run your Python Code?
@itmethink7440
@itmethink7440 4 жыл бұрын
Ctrl + b
@megasauruss
@megasauruss 3 жыл бұрын
@@itmethink7440 i think they meant the program lol
@Jakovage1026
@Jakovage1026 4 жыл бұрын
TestNum = 49 if TestNum % 3 == 0 and TestNum % 7 == 0 and TestNum = 300: print("Divisible By 3 and 7") elif TestNum % 3 == 0: print("Divisible By 3") elif TestNum % 7 == 0: print("Divisible By 7") else: print("Not A Special Number") This actually took me a while to make lol but I managed to get it to work :D
@KeithGalli
@KeithGalli 4 жыл бұрын
Looks good! Nice job!
@kenbirk3422
@kenbirk3422 2 жыл бұрын
Ik This was a year ago but u need brackets around the greater than or equal to parts
@CombatChief0126
@CombatChief0126 2 жыл бұрын
This is my code number = if number < 100 or number >= 300 and number % 3 == 0 or number % 7 == 0: print("This is a special number!!!") else: print("This is not a special number!!!")
@irvingpineda4310
@irvingpineda4310 2 жыл бұрын
I do not know if you can teach how to use conditional statements with dataframes?
@nomad99345
@nomad99345 4 жыл бұрын
number = 140 a = number % 3 b = number % 7 if a == 0 and b == 0: print("Divisible by both") elif a == 0 and b != 0: print("Divisible by 3") else: print("Divisible by 7")
@deltrise_draws6028
@deltrise_draws6028 5 жыл бұрын
Can you have 2 else or no
@itsid3153
@itsid3153 4 жыл бұрын
I'm turning 11 next month do you think i have potential to be good with python
@eventeklay4618
@eventeklay4618 4 жыл бұрын
yep
@savannahwaterfall5308
@savannahwaterfall5308 4 жыл бұрын
This has really been helping me! But I’m on Windows 10 and my computer won’t make “if” a statement. It won’t turn pink or nothing???? Please help me figure out this problem!
@KeithGalli
@KeithGalli 4 жыл бұрын
You being on Windows 10 won't affect anything. What program are you using to edit your code? Also did you make sure to save your file with the ".py" extension.
@kingzeno1708
@kingzeno1708 4 жыл бұрын
5:58 nice
@matthewwhite951
@matthewwhite951 4 жыл бұрын
Number = 303 if Number >= 100 and Number < 300: print("Not a special number.") elif Number % 3 == 0: print("Special number. Divisible by 3.") elif Number % 7 == 0: print("Special number. Divisible by 7.") elif Number % 3 == 0 and Number % 7 == 0: print("Special number. Divisible by both.") else: print("Special number.") Hiya, I really appreciate your guides, I'm currently learning python to broaden my data analysis knowledge for data analysis, I saw that my code is similar but still fairly different from yours in the next video, is my code okay? Or is refining necessary?
@MrSrinihr
@MrSrinihr 2 жыл бұрын
Watching in 2022, thanks Keith.
@Henjo29
@Henjo29 5 жыл бұрын
Here's my attempt: number = 399 if number >= 100 and number
@ooSHINIES
@ooSHINIES 4 жыл бұрын
Took me a while but I think I got it # N = number, SN = special number N = 42 SN1 = (N % 7) SN2 = (N % 3) if (N < 100) or (N >= 300): print("N is a Special Number") if (SN1 != 0) and (SN2 == 0): print("N is only divisible by 3, not 7") if (SN1 == 0) and (SN2 != 0): print("N is only divisible by 7, not 3") if (SN1 == 0) and (SN2 == 0): print("N is divisible by 7 and 3") else: print("N is not divisible by 3 or 7")
@ob1qtx421
@ob1qtx421 2 жыл бұрын
how do you run the code?
@whm3317
@whm3317 5 жыл бұрын
when i press cntrl bafter i type grade = 70, it gives me an indention error, and says unexpected indent
@KeithGalli
@KeithGalli 5 жыл бұрын
if you're still having issues, post your code below and I'll tell you what the issue is.
@whm3317
@whm3317 5 жыл бұрын
@@KeithGalli grade = 70 if grade > 70: print ("You Passed!") under grade = 70 it gives me the red file error code. At the bottom it says unexpected indent
@KeithGalli
@KeithGalli 5 жыл бұрын
@@whm3317 Looks like you have a space before your "if grade > 70:" line. Try removing that so that it is in line with your "grade = 70". The final code should look like this: grade = 70 if grade > 70: print("you passed")
@uzumakizay
@uzumakizay 4 жыл бұрын
what software is this
@ob1qtx421
@ob1qtx421 2 жыл бұрын
okay but how do you run the code?
@parulgodika8403
@parulgodika8403 3 жыл бұрын
x = 630 if x < 100 or x >=300: if x % 3 == 0 and x % 7 == 0: print ("Divisible by both") elif x%3 ==0: print ("Divisible by 3") elif x%7 == 0: print ("Divisible by 7") else: print("Not a special no.") else: print ("Not a special no.")
@zacharylove4353
@zacharylove4353 5 жыл бұрын
if num > 300 or num < 100: print("Not a valid number") elif num % 7 == 0 and num % 3 == 0: print("Divisable by Both") elif num % 3 == 0: print("Divisable by 3") elif num % 7 == 0: print("Divisable by 7") elif num % 7 != 0 or num % 3 != 0: print("This is not a special number") Any improvements?
@AlanSanu
@AlanSanu 3 жыл бұрын
What happen y are u not uploading?
@adamwilliams4751
@adamwilliams4751 4 жыл бұрын
On 22.45 he needs to put a >= 90
@abigailc6271
@abigailc6271 3 жыл бұрын
inp_number=input ("Enter a number: ") number= int (inp_number) if (number>= 100 and number
@sundayuchechukwu3154
@sundayuchechukwu3154 3 жыл бұрын
num = int(input('Enter a number: ')) if 100
@anionor2952
@anionor2952 4 жыл бұрын
number=int(input("Enter your number:")) if number >= 300 or number < 100: if(number%7==0 and number%3==0): print ("divisible by both") elif(number%3==0): print("Divisible by 3") elif(number%7==0): print("Divisible by 7") else: print("not a special number") else: print("not a special number") if(number%7==0 and number%3==0): print ("divisible by both") thats my code
@kemmanderstrikes7060
@kemmanderstrikes7060 4 жыл бұрын
I downloaded sublime text 3 but i cant run my code
@kemmanderstrikes7060
@kemmanderstrikes7060 4 жыл бұрын
So i used python idle instead
@roberteagly3349
@roberteagly3349 4 жыл бұрын
@@kemmanderstrikes7060 I had a similar issue. I solved by deleting python off CPU and re-downloaded. When installing, at the very bottom there is a checkbox to "Set Path" If you click that checkbox and install; sublime will know how to run your python code.
@pearlcha5232
@pearlcha5232 Жыл бұрын
special = 25 if special < 100 or special >= 300: if special % 3 == 0: print("Divisble by 3") elif special % 7 == 0: print("Divisble by 7") elif (special % 3 == 0) and (special % 7 == 0): print("Divisble by both")
@cyberstoriesindia2067
@cyberstoriesindia2067 4 жыл бұрын
I cant able to catch you
@anshikasingh6120
@anshikasingh6120 4 жыл бұрын
i have done the code challenge .and it is showing syntax error.my code is here num=200 if num=300: print("is a special number!!") if num%3==0 and num%7==0: print("divisible by both!") elif num%3==0: print("divisible by 3!") else num%7==0: print("divisible by7!") else: print("not a special number!!")
@TeraEngineeringguru
@TeraEngineeringguru Жыл бұрын
str_1 = "Special number program" str_2 = str_1.center(103,'$') print(str_2) special_number = int(input("Enter a special number :-")) if special_number = 300: if sp % 3 == 0 and sp % 7 ==0: print("You have entred a special number which is",special_number) elif sp % 3==0: print("your number",special_number,"is Divisible by 3 only") elif sp % 5 ==0: print(special_number,"Is only divisible by 7") else: print(special_number,"Is not a special number")
@olympioaluka6876
@olympioaluka6876 Жыл бұрын
def special_numbers(number): if number < 100 or number >= 300: if number % 3 == 0 and number % 7 == 0: print("Divisible by both") elif number % 3 == 0: print("Divisible by 3") elif number % 7 == 0: print("Divisible by 7") else: print("Not a special number!") def main(): special_numbers(int(input("Enter a number:"))) main()
@nickt423
@nickt423 5 жыл бұрын
Here was how I answered the test at the end... codeshare.io/5zY9oO
@AlanSanu
@AlanSanu 3 жыл бұрын
elif aint working for me
@malcolmbraff5964
@malcolmbraff5964 Жыл бұрын
test=99
@kanokda2336
@kanokda2336 4 жыл бұрын
Hit like because 'Wow what a cool name' and thumb up hahaha
@MrSallalou
@MrSallalou 2 жыл бұрын
number = int(input('Number: ')) if number < 100 or number >= 300: if number % 3 == 0 and number % 7 == 0: print('Special number divisible by both 3 and 7!') elif number % 3 == 0 and not number % 7 == 0: print('Special number divisible by 3') elif number % 7 == 0 and not number % 3 == 0: print('Special number divisible by 7') else: print('Not a special number!') else: print('Not a special number!')
@mdbgamer556
@mdbgamer556 3 жыл бұрын
number = 100 result = number % 3 result2 = number % 7 if number < 100 or number >= 300: if result == 0: print("Divisible by 3") if result2 == 0: print("Divisible by 7") if result == 0 and result2 == 0: print("Divisible by 3 and 7") else: print("Not a special number") else: print("Not a special number")
@mohamedismail685
@mohamedismail685 5 жыл бұрын
nice but at the middle of the video i didnt understand anything so please can you help me ???????
@KeithGalli
@KeithGalli 5 жыл бұрын
Can you be more specific with what you don't understand? I'll try to help the best I can
@KeithGalli
@KeithGalli 5 жыл бұрын
I'll message you in an hour
@KeithGalli
@KeithGalli 5 жыл бұрын
What's your gmail?
@KeithGalli
@KeithGalli 5 жыл бұрын
@@mohamedismail685 Messaged you on google hangouts
@izy_abbi
@izy_abbi 3 жыл бұрын
print('Finding special numbers') num = int(input('Enter your number: ')) if num < 100 or num >= 300 and num % 3 == 0 and num % 7 == 0: print('Your number is a special number and is divisible by both!') elif num < 100 or num >= 300 and num % 3 == 0: print('Your number is a special number but it\'s only divisible by 3!') elif num < 100 or num >= 300 and num % 7 == 0: print('Your number is a special number but it\'s only divisible by 7!') else: print('Your number is not a special number.') Can someone pls explain why this code is not working?? For example, if I type the number 1, it says: Your number is a special number and is divisible by both!
@glamify524
@glamify524 2 жыл бұрын
I’m new to python but I believe it’s because you have more than one question after the “or” command.
@therealchris5894
@therealchris5894 4 жыл бұрын
The number is 378 yes I know this is late
@kaizuouniorewanaru7908
@kaizuouniorewanaru7908 4 жыл бұрын
One who want to learn python must be here.
@ainurermakhan6213
@ainurermakhan6213 3 жыл бұрын
Who watching this in 2021?
@nathanielnitsch1293
@nathanielnitsch1293 4 жыл бұрын
Im sensing some unresolved parental issues.
@niterwo3316
@niterwo3316 3 жыл бұрын
The three people who disliked this vid are the people who don’t think Keith is a cool name
Functions in Python - Beginner Python Tutorial #3 (with Exercises)
27:01
5 Good Python Habits
17:35
Indently
Рет қаралды 390 М.
ИРИНА КАЙРАТОВНА - АЙДАХАР (БЕКА) [MV]
02:51
ГОСТ ENTERTAINMENT
Рет қаралды 3,4 МЛН
Which one is the best? #katebrush #shorts
00:12
Kate Brush
Рет қаралды 26 МЛН
小女孩把路人当成离世的妈妈,太感人了.#short #angel #clown
00:53
Math & Variables in Python - Beginner Python Tutorial #1
18:27
Keith Galli
Рет қаралды 83 М.
The if-elif-else Statement in Python
12:45
Neso Academy
Рет қаралды 22 М.
Python Tutorial 6: How to Use If Statements and Conditionals in Python
29:30
How to Program a Game! (in Python)
1:10:07
Keith Galli
Рет қаралды 492 М.
5 Really Cool Python Functions
19:58
Indently
Рет қаралды 51 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,1 МЛН
Coding Was Hard Until I Learned THESE 5 Things!
7:40
Pooja Dutt
Рет қаралды 1 МЛН
10 Python Shortcuts You Need To Know
27:27
Tech With Tim
Рет қаралды 291 М.
ИРИНА КАЙРАТОВНА - АЙДАХАР (БЕКА) [MV]
02:51
ГОСТ ENTERTAINMENT
Рет қаралды 3,4 МЛН