Тёмный
No video :(

if else in python | Lec-7 

MANISH KUMAR
Подписаться 21 тыс.
Просмотров 2,2 тыс.
50% 1

In this video, I have talked about the fundamentals of programming and Python. If you complete this, you will be well-versed in if, else and elif conditional statements.
Directly connect with me at:- topmate.io/man...
Discord channel:- / discord
For more queries reach out to me on my below social media handle.
Follow me on LinkedIn:- / manish-kumar-373b86176
Follow Me On Instagram:- / competitive_gyan1
Follow me on Facebook:- / manish12340
My Second Channel -- / @competitivegyan1
Interview series Playlist:- • Interview Questions an...
My Gear:-
Rode Mic:-- amzn.to/3RekC7a
Boya M1 Mic-- amzn.to/3uW0nnn
Wireless Mic:-- amzn.to/3TqLRhE
Tripod1 -- amzn.to/4avjyF4
Tripod2:-- amzn.to/46Y3QPu
camera1:-- amzn.to/3GIQlsE
camera2:-- amzn.to/46X190P
Pentab (Medium size):-- amzn.to/3RgMszQ (Recommended)
Pentab (Small size):-- amzn.to/3RpmIS0
Mobile:-- amzn.to/47Y8oa4 ( Aapko ye bilkul nahi lena hai)
Laptop -- amzn.to/3Ns5Okj
Mouse+keyboard combo -- amzn.to/3Ro6GYl
21-inch Monitor-- amzn.to/3TvCE7E
27-inch Monitor-- amzn.to/47QzXlA
iPad Pencil:-- amzn.to/4aiJxiG
iPad 9th Generation:-- amzn.to/470I11X
Boom Arm/Swing Arm:-- amzn.to/48eH2we
My PC Components:-
intel i7 Processor:-- amzn.to/47Svdfe
G.Skill RAM:-- amzn.to/47VFffI
Samsung SSD:-- amzn.to/3uVSE8W
WD Blue HDD:-- amzn.to/47Y91QY
RTX 3060Ti Graphic card:- amzn.to/3tdLDjn
Gigabyte Motherboard:-- amzn.to/3RFUTGl
O11 Dynamic Cabinet:-- amzn.to/4avkgSK
Liquid cooler:-- amzn.to/472S8mS
Antec Prizm FAN:-- amzn.to/48ey4Pj

Опубликовано:

 

29 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 29   
@adityajoshi2797
@adityajoshi2797 6 месяцев назад
a=int(input("Enter a number :")) if a%2==0: print("even number") else: print("odd number")............very well explained please upload more video very interesting python topic
@fashionate6527
@fashionate6527 2 месяца назад
very well explained thank you itna easy m batane ke liye
@PragteeTathe
@PragteeTathe 9 дней назад
number= int(input("enter the number")) if(number%2==0): print("number is even") else: print("number is odd")
@AprajitaPandey-of2kf
@AprajitaPandey-of2kf Месяц назад
@manishkumar bhaiya aap kuch questions ke answer nahi diye, jo starting me mention kiye thee. like backdated job run, check if df is empty or not!!
@basavareddy8595
@basavareddy8595 6 месяцев назад
Your a true teacher bhai🎉❤ thank you.
@PrashantKumar-wz3ex
@PrashantKumar-wz3ex 6 месяцев назад
Awesome video sir , keep uploading videos
@user-ip5dc7op8c
@user-ip5dc7op8c 6 месяцев назад
Nice explanation .. please continue this playlist...❤
@rockstar4507
@rockstar4507 6 месяцев назад
Eagerly waiting for your next videos...i can understand bcz of busy life schedule you are not able to upload it regularly but pls upload as soon as possible
@vaibhavdhok3609
@vaibhavdhok3609 6 месяцев назад
Well Explained
@user-ip5dc7op8c
@user-ip5dc7op8c 6 месяцев назад
Manish Bhai Next lecture kab aayega .. eagerly waiting for your lecture..
@AnkitChoudhary-ri9jp
@AnkitChoudhary-ri9jp 3 месяца назад
Bhaiya wo dusre wali plalist kan se start karenge
@manish_kumar_1
@manish_kumar_1 3 месяца назад
Soon
@vishalmane3139
@vishalmane3139 6 месяцев назад
spark playlist ended bhai?
@parameshwarbhange9857
@parameshwarbhange9857 6 месяцев назад
I am 2018 pass out from (mechanical engineering ) NON IT background if I learned whatever you are teaching . Can I get job as fresher (data engineer).
@manish_kumar_1
@manish_kumar_1 6 месяцев назад
May or may not be as a data engineer but definitely you will land somewhere in IT development
@sarveshkumar-tq4fn
@sarveshkumar-tq4fn 4 месяца назад
Number_to_be_checked = int(input("Enter the numer to check : ")) Result = Number_to_be_checked%2 if (Result==0): logging.info("Your number is even !") else: logging.info("Your number is odd !")