Тёмный
No video :(

while loop in python | Lec-12 

MANISH KUMAR
Подписаться 21 тыс.
Просмотров 1,4 тыс.
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 using list for different use case.
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

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 9   
@GauravKumar-im5zx
@GauravKumar-im5zx 5 месяцев назад
Bhai ek cheez bolunga ki kabhi demotivate mat hona coz you are a motivation for alot of people like me. Aapki videos k basis par hi main iss saal data engineer ki job ki preparation kar rha hun and ek badhiya opportunity grab karunga and will let you know. Currently working in Capgemini and will switch. Keep going bhai.
@pankajrathod5906
@pankajrathod5906 5 месяцев назад
Sir aapke spark ke video dekhke bohat kuch samajhme aaya.. Bohat simple me aap samjhjatey ho Thank u sir for this
@sandeshkandel4154
@sandeshkandel4154 5 месяцев назад
Brother,,, reguary video upload kijiye na please,, Hum aaoke videos dekhkr bohot kuch sikhne ko paarahe hain
@user-eb5dx9of6k
@user-eb5dx9of6k 5 месяцев назад
Really helpful videos bhaiya.Eagerly waiting for your new videos.I will complete all your videos.Love your channel
@shrutikansal9831
@shrutikansal9831 5 месяцев назад
You are really doing a great job, it is very easy to understand and quite deep + informative. Can you please make video series on Kafka as well. It is very important topic for data engineers especially with growing market and competition. Please make it, very much needed.
@user-pb7nb2lc7f
@user-pb7nb2lc7f 5 месяцев назад
def operation(num1, opr, num2): result = 0 if (opr == '+'): result = float(num1) + float(num2) elif (opr == '-'): result = float(num1) - float(num2) elif (opr == '*'): result = float(num1) * float(num2) elif (opr == '/'): result = float(num1) / float(num2) else: print("Pass proper operator") return return result number = [] while True: while True: try: num1 = float(input("Enter a number ")) if (isinstance(num1,(int, float))): number.append(num1) break except: print("Enter proper number ") continue while True: try: oper1 = input("Enter Operator [+ , -, *, /]: ") if (oper1 in "+-*/"): number.append(oper1) break elif oper1 == '=': break else: continue except: print("Enter proper Operator ") continue if oper1 == '=': break print("Number List is ",number) i = 0 while (i
Далее