I dont know how do you find a so much easy way to explain so difficult problems sir. Hats Off to you sir.
@codeitup3 жыл бұрын
Thanks a lot Akshay for your lovely comment😊
@dhruvsharma92302 жыл бұрын
@@codeitup SIR PLEASE DS ALGO SERIES BANA DIJIYE LOVE BABBAR SDE SHEET SE YA STRIVER SDE SHEET SE HINDI ME SARE QUESTIONS SOLVED HAI FOR LOVE BABBAR GEEKS FOR GEEKS ME
@Vibeshai6 ай бұрын
Yr itna accha pdaya inhone aur 1000 se km likes aur 20k views? Glt baat baccho😮 Bahut accha pdaya aapne sir❤
@onlycoc75993 жыл бұрын
your teaching with a smile in your face, " I LIKE IT "👍👍👍👍👍👍👍👍👍
@codeitup3 жыл бұрын
Thanks dear😊
@RumaPatra-sz2zi6 ай бұрын
a = int(input( " Enter a Lower Limit : " )) b = int(input( " Enter a Upper Limit : " )) so = 0 se = 0 pe = 1 po = 1 for i in range(a, b + 1): if(i%2==0): se = se + i pe = po * i else : so = so + i po = po * i print( " Sum of the Even Number : ", se) print( " Sum of the Odd Number : ", so) print( " Product of the Even Number : ", pe) print( " Product of the Odd Number : ", po) It WORKED SIR.... Thank u sir........
@keshavagarwal5639 Жыл бұрын
You made it so easy on other channel it is made very hard to understand. Thanks sir
@codeitup Жыл бұрын
Glad to hear that!
@kingtechnology10622 жыл бұрын
Seriously this is so helpful it deserves 1M likes actually, very simple explanation thank you you much sir, my exam is tmrw and I was searching for easy ones and your vid explained everything thx so much
@codeitup2 жыл бұрын
Glad to help you & best of luck for your exam!
@luciferraze3590 Жыл бұрын
Sir You are super!!! Thankyou for teaching us
@codeitup Жыл бұрын
Thanks and welcome!
@pruthvirajsinhzala44412 жыл бұрын
are sir ye playlist is very nice kal mera cs ka paper hai apke videos dekh ke sab samaj mai agaya aap explain bohot acha karte ho
@codeitup2 жыл бұрын
Thanks Pruthiviraj, keep learning😊
@motivation_factory_0012 жыл бұрын
Computer wallah 🥰
@codeitup2 жыл бұрын
😊
@RahulKumarSinghaniya-d6m Жыл бұрын
number = int(input("Enter a number: ")) total_sum = 0 # Convert the number to a string to iterate through its digits for digit_char in str(number): digit = int(digit_char) total_sum += digit print("The sum of the digits is:", total_sum) you teach us at 14:45 duration that we can do this by for loop. now i am helping you to do this in different way and challenging you please give me a question which will done by while but not possible by for loop
@ankitanand10462 жыл бұрын
Sir You are the best teacher to explain such concepts like a cakewalk
@codeitup2 жыл бұрын
Thanks a lot Antik!
@harshsingh57622 жыл бұрын
Jabarjast padhawela guru...ek no. per ek series practice k bhi banava 200-300 questions karwa da plz.
@harshsingh57622 жыл бұрын
How many of u guys want more practice, plz comment here.
@arpitapandey8645 Жыл бұрын
Thank you sir❤
@codeitup Жыл бұрын
Most welcome!
@MalegaonDiary3 ай бұрын
# For loop without start value - 0 to 10 for i in range(11): print(i) # start value - 1 to 10 for i in range(1,11): print(i) # Increase by 2 range(start value, end value, increamental value) # start value=1, End Value=10, increment value=2 for i in range(1,11,2): print(i) # Print numbers from 10 to 1 for i in range(10,0,-1): print(i) # Print 2 to 20 for i in range(2,21,2): print(i)
@haisesasaki3572 Жыл бұрын
sir you're amazing.♥
@JaiprakashSodi-hz3qh10 ай бұрын
thank you so much sir really your explain very well 🥰🥰❤❤❤❤❤❤❤
@codeitup10 ай бұрын
Most welcome Jaiprakash!
@PoojaVerma-mc3lh11 ай бұрын
You are the best👍💯 thank you
@codeitup11 ай бұрын
Most welcome Pooja!
@AnuragMishra-ob1er Жыл бұрын
hlw sir ji thanku for all you do for us 😍🤗
@deepakmishra27792 жыл бұрын
sir please ek baar ek video kha while loop use karte hai aur kha for loop use karte hai ek baar acche se exmplain kar digiye . kyo ki sir app ne jo btaya hai sum app digit to dono me ho sakta hai. num=input("Enter a number:") sum=0 for n in num: sum = sum + int(n) print(sum) #### same program by while loop i = int(input('ENTER YOUR NUM')) sum = 0 while (i>0): sum = sum+i%10 i=i//10 print(sum)
@adarshraiwal61942 жыл бұрын
Sir you are best
@codeitup2 жыл бұрын
🙂
@rishabh99033 жыл бұрын
SIR PLEASE PLEASE HUGE REQUEST TO CREATE A SEPERATE PLAYLIST OF SESSION 2020-21 WITH NO DELETED TOPICS PLEASE SIR SO THAT WE CAN WATCH YOUR VIDEOS CONFIDENTELY
@mansisingh24343 жыл бұрын
Thankuu so mucch sirr❤❤
@codeitup3 жыл бұрын
Most welcome Mansi!
@Funwithpaperalso20085 ай бұрын
Attendance of 2024....😅here plz....also hats off to u sir🎉🎉
@python88883 жыл бұрын
# to add the digits using while loop i = int (input ("Enter the number : ")) sum = 0 while i > 0 : sum = sum + i %10 i = i //10 print (sum) # to add the digit using for loop a = input ("Enter the number : ") sum = 0 for i in a : sum = sum + int (i ) print (sum )
@lbath76 Жыл бұрын
Thanks a lot sir
@codeitup Жыл бұрын
Most welcome!
@sanatanbharat1947 Жыл бұрын
Love the video
@codeitup Жыл бұрын
🙂
@suruchisingh41553 жыл бұрын
It's ammazing
@codeitup3 жыл бұрын
Thanks Jayant!
@vikassonkar8613 жыл бұрын
sir can you please explain , new pattern of exam(2021-2022) term 1st mcq based k question kaise aayenge? sir passing marks kaise laye?? (CBSE BOARD)
@nextstep9543 жыл бұрын
Class 12 new batch kab start hoga
@codeitup3 жыл бұрын
At this stage I think no batch is going to be started. However, you may mail to: codeitupofficial@gmail.com
@lavsingh21753 жыл бұрын
Sir For loop me initialize bhi kr diya And increment/Decrement bhi but condition to lgaayi hi nhi h hmne🙄 Serial No. Ko print krne me Koi condition kyu nhi lg rhi.
@anilsingh621103 жыл бұрын
Sir please answer this write a menu driven python program to update the marks of named keerthika to 460
@anilsingh621103 жыл бұрын
For class 12 python
@vanshikagupta76893 жыл бұрын
👏
@codeitup3 жыл бұрын
😊
@deepakkarki31792 жыл бұрын
one day before exam 😂🤝
@codeitup2 жыл бұрын
👍
@nextstep9543 жыл бұрын
Please reply sir 🙏 🙏
@codeitup3 жыл бұрын
At this stage I think no batch is going to be started. However, you may mail to: codeitupofficial@gmail.com
@bijaymahato17983 жыл бұрын
I feel like he is bihari....
@codeitup3 жыл бұрын
Yes, I'm Bihari 😊
@pranavverma41693 жыл бұрын
You are given a dictionary priceList = {"Pen" : 10, "Pencil" : 5, "Eraser" : 5, "Ruler" : 20}, representing products and their rates. write a function rate that accepts this dictionary along with the name of a product and returns the price of that product. If the product does not exist in the dictionary, then it should return -1. For example, if the name of the product is Ruler then the function should return 20. Sir please help me out in this problem of python programming..
@codeitup3 жыл бұрын
def search(priceList,key): flag=0 for i in priceList: if i==key: flag=1 return priceList[i] if flag==0: return -1 #__main__ priceList={"Pen":10,"Pencil":5,"Eraser":5,"Ruler":20} key=input("Enter Item to be searched:") val=search(priceList,key) if val==-1: print("Element Not Found:") else: print("The Price of ",key," is=",val)