Hello Tejab Titare. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other python videos by Durga sir in the following link goo.gl/EapLMr
my solution without looking at your solution is : def reverser(my_string=""): spx = my_string.split() neW_spx = [spx[x][::-1] for x in range(0,len(spx)) if x%2!=0] spx[1::2]=neW_spx return ' '.join(spx)
fabalus explaination.
Hello Tejab Titare.
Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos.
You can view all other python videos by Durga sir in the following link
goo.gl/EapLMr
i want for loop then what i will do
Hello Venkatesh.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
Great man.. Simple and clear explanation
Ty sir
Plese post more Interview videos , it was very helpful for common peoples
Great video by the way, thanks for your effort.
Sir can u please tell how it is getting output with out importing packages
Plsss..... Tell me sir
Hello Maha.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
Sir please provide string manipulations programs in java too plz...
Hello Vikas.
Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
my solution without looking at your solution is :
def reverser(my_string=""):
spx = my_string.split()
neW_spx = [spx[x][::-1] for x in range(0,len(spx)) if x%2!=0]
spx[1::2]=neW_spx
return ' '.join(spx)