Your teaching method is very easy to follow. Please keep doing more videos!
@AmulsAcademy5 жыл бұрын
Thank you :)
@barracudaboi7902 жыл бұрын
Your teaching is great Ma'am, very simplistic and easy.
@kathanjalishree44414 жыл бұрын
Best teacher or say friend to teach python language in simplest way....
@muhammadadeel15494 жыл бұрын
your vedio has changed my life ,thank u big fan
@AmulsAcademy4 жыл бұрын
Glad to hear that :)
@toufiknazir44765 жыл бұрын
The teaching technique is quite impressive.....! keep putting videos...!
@AmulsAcademy5 жыл бұрын
Thank you :)
@businessstalker93027 жыл бұрын
Plzzzz upload videos on Oops and GUI ... Your teaching style is awesome and plzzz upload this... I will wait for your upload 🙏🙏🙏 Plzzzzzz
@neogheg4 жыл бұрын
This was amazing, just incredible
@AmulsAcademy4 жыл бұрын
Thank you :)
@rajashekharvattipelli2 жыл бұрын
Loved it ❤️
@saadali67234 жыл бұрын
Can you please tell me the time complexity of this?
@samricoder8283 жыл бұрын
thanks a lot to you mam as for you now i understood basuic fundamental of python thanks a lot and again your voice is so cute
@AmulsAcademy3 жыл бұрын
Thank you 😊❤️
@samricoder8283 жыл бұрын
@@AmulsAcademy welcome mam can you give me your contact means instragram or facebook any
@Ayush_Yadav_Views4 жыл бұрын
hii ma'am , where can I find this type of problems to practice ?
@AmulsAcademy4 жыл бұрын
You can search online :)
@anusmitasamanta26085 жыл бұрын
Great!
@AmulsAcademy5 жыл бұрын
Thank you :)
@noobmaster56924 жыл бұрын
Anusmita Samanta are you from Dav ?
@priy94914 жыл бұрын
Thank you just Thank you
@AmulsAcademy4 жыл бұрын
Welcome! :)
@krishk48705 жыл бұрын
Mam pls tell me how did result variable reset to zero Everytime how could be?? Pls explain me
@AmulsAcademy5 жыл бұрын
Because it is inside the for loop. for every num value result will reset to 0. :)
@krishk48705 жыл бұрын
@@AmulsAcademy heyyy tq for you reply amul... Y u didn't start a company yet coz u got very clear mind about Python....
@polo99a95 жыл бұрын
Hi there. I used the code you wrote here, but the results for numbers up to 1000 is wrong... it gives me 5, 27 and 495... which is wrong. Anyone any ideas? for num in range(1,1000): result=0 for i in range(1,num): if num%i==0: result=result+i if result==num: print(i,' the number is perfect')
@AmulsAcademy5 жыл бұрын
if result==num: print(i,' the number is perfect') here you need to print num value not i value. if result==num: print(num,' the number is perfect') :)
@akshaysharma95562 жыл бұрын
Why this code is not giving the answer lower=1 upper=10 sum=0 for num in range(1,11): for i in range(1,num): if num%i==0: sum=sum+i if sum==num: print(num)
@saipriya59236 жыл бұрын
please upload the code for second definition also
@RajeevKumar-di3wl2 жыл бұрын
not working this code at all
@akashshetty45093 жыл бұрын
n=int(input("1st ")) n1=int(input("last")) res = 0 for i in range (n,n1+1): for j in range (1,i): if i%j==0: res=res+j if i==res: print(i) why this code Is not giving d ans??
@AmulsAcademy3 жыл бұрын
Take res=0 inside the first for loop :)
@akashshetty45093 жыл бұрын
@@AmulsAcademy why should we take res=0 inside the for loop??
@supriyachakilam3833 жыл бұрын
@@akashshetty4509 if result=0 not mentioned inside for loop..then for the first number in interval when it checks for condition and keeps the result value.. Then to check the other number the other number condition if satisfied then it add the I value to the previous result as we haven't cleared the previous result value..so we don't get output..!