Sir i m in class 11th i was not able to understand python at all but jabse aapke channel pata chala to bahut aasan lgta hai... Nd mai apne sare frnds ko v batati hu aapke channel ke bare me..
Sir this is starting of your channel I think you will get great succes in your this channel further time After 1 year all of us used to aware about python for jobs and for students also I am also a student i want to learn python from you
Excellent lecture sir .Love they way you explain each and every concept in detail even if u have already explained the concept earlier .The day I found this channel was infact one of the best days of my student life coz computer has never been this much easier to me as it is now Thank u sir for such an energetic lecture❤😊
Hello Sir, I am a first year btech cse student ! They are teaching python in first sem....Also Sir I have followed you since my 11th class and for revision I am back with you !! Just want to Thankyou sir for helping each of us Literally it's my continuously third year with you sir 😃😃
hello sir, i have seen your videos your number 49 that is this one and i wanted to know if there are any sites which have questions for these topics as i wanted to practice until what i have done because i think i won't be ale to remember everything without practice. Thanks
Dear Tanvedz, In my videos I have covered almoat evey question. Step by step see them all and practice it. Specially there is no website for only questions but you may refer w3schools.com for notes.
hi bro can u pls check this below code for the string reversal: user_string = input("Please enter a string.") reversed = "" for item in range(len(user_string) - 1, -1, -1): reversed += user_string[item] print(reversed) why here in for loop three -1's are given
1. Reverse a number: ruclips.net/video/5bM8JOHZH44/видео.html 2. Sum of digits - ruclips.net/video/-PPkWv2D2K0/видео.html Follow the python playlist and will get every program: ruclips.net/p/PLmRclvVt5DtmcLF3ywxKg692lhfD6SUOr
Sir i m in class 11th i was not able to understand python at all but jabse aapke channel pata chala to bahut aasan lgta hai... Nd mai apne sare frnds ko v batati hu aapke channel ke bare me..
Thanks shikha! Students like you are my only hope. Thanks for your kind comment.
Sir this is starting of your channel
I think you will get great succes in your this channel further time
After 1 year all of us used to aware about python for jobs and for students also
I am also a student i want to learn python from you
Thanks PKG. Kindly support this channel to grow.
Excellent lecture sir .Love they way you explain each and every concept in detail even if u have already explained the concept earlier .The day I found this channel was infact one of the best days of my student life coz computer has never been this much easier to me as it is now
Thank u sir for such an energetic lecture❤😊
I regret why I didn't find your channel in 11 only .....but ...thanks a lot ..your explanation is very clear ...
No Problem Hemlata, Der aae durust aae !
Jnn ye you are right😭
Hello Sir, I am a first year btech cse student ! They are teaching python in first sem....Also Sir I have followed you since my 11th class and for revision I am back with you !! Just want to Thankyou sir for helping each of us
Literally it's my continuously third year with you sir 😃😃
Thank you so much for your love dear, keep learning.
God bless you!
Thanks a lot sir
I am sharing your videos to all
I hope i will get proper videos for understanding "python"
Armstrong, Neon like
No prime or Non prime
Thanks a ton Pkg.
thank you so mch sir well explanation will follow u to learn python
Thanks & most welcome Manjot!
Awesome.. Applaud
Thanks Asiya😊
Very nice video hai sir thanks❤❤❤❤
Good job..thankyou sir
Nice n humble teaching bro ....
Thanks and welcome🙂
thinks sir
sir your second alternative program isn't showing the reverse but printing as it is..
amazing...you made it really easy to understand...
Thanks a lot Geetu!
@@codeitup Ur welcome
Thanku so much sir...
Most welcome Yash!
Tq sir it’s very helpful ♥️🙏
we should thanks for this sir,
thanqq so muck sir.
Most welcome Mamta!
ThankYou!
thanks sir
Nicely understood
Okk, keep learning😊
This vedio is helpfull
I wish if i would have seen this before so my practicl would be muchh better
😊
Thanku sir ji
Most welcome!
We can also use simple method
a="shadab"
print(a[::-1])
Out put :- badahs
Sir tq so much
Most welcome.
Really d way u say is really very easy plz tell me if u say online python course am interested along with assignment
Helpfull in class 12
Glad to help you Ajay!
@@codeitupcan u pls tell me how many ques. Of function comes in finals
Hi sir, pls make video on shallow copy and deep copy
hi sir,
a = 'ram'
for i in range((len(a)-1),-1,-1):
print(a[-i],end="")
output : amr
Perfect but the output will be: mar
I think you mistyped it.😇
No, the output would be amr
The problem is in line 4:
print(a[i], end = "")
you have put a[-i]
Good work.But I'm not very good at hindi.Could you please explain about a[i] in English.
a[i] is basically the values contained on the i index.
Sir but if the stop value is -1 it will go till -1-1 na that is -2 how it will go till 0....
hello sir,
i have seen your videos your number 49 that is this one and i wanted to know if there are any sites which have questions for these topics as i wanted to practice until what i have done because i think i won't be ale to remember everything without practice.
Thanks
Dear Tanvedz,
In my videos I have covered almoat evey question. Step by step see them all and practice it. Specially there is no website for only questions but you may refer w3schools.com for notes.
@@codeitup k
without using built in functions can u share it
Sir aapne 3rd line mai print(a[i] kya kya matlab hai humne square bracket kyu lgaya
❤
please use while loop ...
my school work is given to make program which performs various function class 11
please suggest
hello sir, please run the program but some of the program get the error. at least one of the program in video must be run
Sir we are giving -1 as a step value ., by default will it not take -1??
No Sameeksha, by default the step value is 1 (positive 1). So, if we want the step value as -1 we need to gve it.
@@codeitup Ok got it sir.
thankyou
Sir... Len(a) -1 : lagega ya fir ,
?
Sirf len(a) hoga because indexing 0 se start hota hai...
@@codeitup no sir I m asking....kii
: Kab lagega aur , kab lagega
Sir apne baki methods to batae hi nahi pehle video mein jaise capitalize count
a=input("shyaam");
print(a[-1::-1]);
sir here the answer is still coming shyaam and is not reversed?
remove 'input' and ';'
a=input('enter string')
print(a[-1::-1])
it will work
Sir is program me initial value -1 dene ki zarurat nahi thi. Bina initial value diye hum sirf step value -1 de to bhi string reverse ho sakti hai
💥
🙂
hi bro can u pls check this below code for the string reversal:
user_string = input("Please enter a string.")
reversed = ""
for item in range(len(user_string) - 1, -1, -1):
reversed += user_string[item]
print(reversed)
why here in for loop three -1's are given
In this loop ....code doesn't work
TypeError:'tuple' object cannot be interpreted as an integer
Just try to type correctly. I think you have mistyped something as the program runs and i have showed it in the tutorial...
@@codeitup I have also got the same error
Pls paste your code here
a[i] kese work kr rha h loop m
String ki jagha Array ho to kaise karenge Anand sir ye program
ruclips.net/video/WybdXuEaKLQ/видео.html
1 .Write a program to reverse a number.
2 .Write a program to find the sum of the digits of a number accepted from
use
Sir please solve me
1. Reverse a number: ruclips.net/video/5bM8JOHZH44/видео.html
2. Sum of digits - ruclips.net/video/-PPkWv2D2K0/видео.html
Follow the python playlist and will get every program:
ruclips.net/p/PLmRclvVt5DtmcLF3ywxKg692lhfD6SUOr
@@codeitup thanks you sir
Not working... why??
kuch samaj mai nahi aaayaaaa