Hii mam...,when we use for loop why the varible 'i' is getting initialized before every iteration as we already assigned 'i' with a string "i"?
@nakshatranahar5 жыл бұрын
I appreciate this
@AmulsAcademy5 жыл бұрын
Thank you :)
@ITEngineer995 жыл бұрын
Excellent come up with more questions...👌👌
@AmulsAcademy5 жыл бұрын
Thank you :)
@prajwalnagaraju8834 жыл бұрын
If we use for loop how come i is initialized in every sequence instead of string "i"
@AmulsAcademy4 жыл бұрын
for loop in actually for each loop :)
@anjanamahesh695 жыл бұрын
mam can u pls discuss programs and its output
@nakshatranahar5 жыл бұрын
Well I am also thinking to make these kind of video but I am getting a sound noise how can I make the video like you without sound or background noise
@ashu600715 жыл бұрын
Nakshatra Nahar eagerly waiting for your videos as well.
@grahampawar5 жыл бұрын
Since, while loop only executes when given value is TRUE else it will be ignored! Hence my conclusion is that the else part consisting of NONE is executed!
@krib16695 жыл бұрын
How is a *nested for loop* iterated on run-time, Please make it happen!
@t.gowthamarasu12585 жыл бұрын
After a Very loooooooong time
@ashu600715 жыл бұрын
x=input() # Reading the number of testcases y=input() # Reading Array y=y.split() # Spliting the numbers for i in y: # converting the array into integer i=map(int,y) endele=y[-1] # extracting the last element sliced_str=y[-6:] # extracting first 4 element listToStr = ''.join(map(str,sliced_str)) # converting list to string y=endele[-1] + listToStr[-6:] # trying to concatenate the string y=str(" ".join(map(str,y))) # converting the array integer into array string print(y) # printing the output i am trying to rotate the string by single element. please help
@siddusunny70634 жыл бұрын
pls send me solution to following program: python program to add digits repeatedly until result has a single digit
@ashu600715 жыл бұрын
5 3 0 1 100 1 4 100 2 3 100 Output 100 200 200 200 100 problem of array manipulation please make a video