in love with your voice, ma'am. I tend to listen more because of ur voice
@sandeephugar5864 Жыл бұрын
Thank you so much❤️ Clear explanation.. I have ever seen teacher like u mam Tommorow my exam there.. These videos are Very helpfull mee🥳
@pmukesh39117 жыл бұрын
Concepts are very clear and easily understandable. Thank you "Amuls".
@AmulsAcademy7 жыл бұрын
Welcome:)
@pluckybeast.3 жыл бұрын
What ever u teacher it has a lot of content Thanks a lot
@AmulsAcademy3 жыл бұрын
Thank you :)
@nehayadav36634 жыл бұрын
This is quite amazing channel❣️
@AmulsAcademy4 жыл бұрын
Thank you :)
@rajm53494 жыл бұрын
how to get the resme shortlisted for an interview kindly help me
@harikrishnants85454 жыл бұрын
can someone please tell how to implement - for(i=2;i
@AmulsAcademy4 жыл бұрын
You can increment L in the loop body {last line} :)
@harikrishnants85454 жыл бұрын
To increment L, L+=1 will be enough or not?
@harikrishnants85454 жыл бұрын
@@AmulsAcademy Ok that worked fine. Thanks for mentioning to place that in the last line.
@rajesh99547067885 жыл бұрын
Plz tell.me the important program for class 11 computer science python
@vijaysahal45564 жыл бұрын
very useful you way of teaching nd much clear tq
@AmulsAcademy4 жыл бұрын
You are most welcome :)
@Ramesh-rp6jq6 жыл бұрын
Hi amuls Need some clarification on loops. How to decide which loop should be used When we write any program . Pls give me some examples of for and while loops. I am bit confusing while use the loops
@AmulsAcademy6 жыл бұрын
In python, while loop is used to execute a block of statements repeatedly until a given a condition is satisfied. And when the condition becomes false, the line immediately after the loop in program is executed. The for statement iterates through a collection or iterable object or generator function.[list tuple dictionary range()] If you don't have a tidy data structure to iterate through, or you don't have a generator function that drives your processing, you must use while. otherwise use for loop. Use for loop unless it's impossible. If for is impossible for some reason, then use while loop.
@VijayKumar-uj6hg6 жыл бұрын
will you explain clearly about "nested for loops " (like for loop) having lot of confusion on it
@AmulsAcademy6 жыл бұрын
Sure:)
@vijaykribha42236 жыл бұрын
i am so confusing that following syntax ( return "".join(c for c in str if c not in chars)). i got that syntax from one example program. why they are using variable in front of FOR LOOP. what is the advantage????. please explain me....
@AmulsAcademy6 жыл бұрын
c for c in str if c not in chars this is the generator expression, syntax: (expression for item in iterable if condition)
@Vijay_Journalist4 жыл бұрын
First your english language fluency is excellent. Classes are very clarity.good job. And can i ask a question????? In your channel more than 200 python classes are present. If we follow your channel fully will i get a job in IT field as a programmer?? Please tell me! Can i get full knowledge about python from amuls??
@AmulsAcademy4 жыл бұрын
You can learn basics :)
@prabhashthakur27027 жыл бұрын
neat and clean teaching technique didi . What u have studied computer engineering or IT?
@AmulsAcademy7 жыл бұрын
Thank you:) BE ( IT ) :)
@prabhashthakur27027 жыл бұрын
umm great.
@SidraWaheed-qk2lj2 жыл бұрын
can numeric data can be read from a given list using for??
@jaspreet79046 жыл бұрын
can u plz tell me looping are iterative statements or not and also what are the statements include in sequential control
@AmulsAcademy6 жыл бұрын
In sequential control there are no statements. Loops are iterative control statements if else selection control statements :)
@nilsaha80217 жыл бұрын
When I execute the for loop with a list as you mentioned, why my display is different than you. eg. (10, 'less than 25') (20, 'less than 25') I am getting parenthesis and commas. Is it because I am using python 2.7? Thanks
@AmulsAcademy7 жыл бұрын
yes because in python 2 print is a statement but in python 3 it is a function. so in python 2.7 you can write like this , print val,"less than 25"
@kavitakadam9559 Жыл бұрын
Thnk u mam..i loved your explanation
@moneshmon5955 Жыл бұрын
Mam your teaching easily understand thank u mam
@MrVikas28feb4 жыл бұрын
good job as always!! just a check, is your name Amul?
@AmulsAcademy4 жыл бұрын
Thank you :) My name is Amulya :)
@abhishekabhi9602 жыл бұрын
I wish i had teacher like you in college 🙃🙃
@mohammadshahadathossain15445 жыл бұрын
Excellent video to learn a new idea every time. Can you please help me to take multiple inputs from the user in an array in Python 3.7? For example A=[8,4,12,40,26,28]
@AmulsAcademy5 жыл бұрын
n = int(input("how many elements you want in list:")) print("enter the elements:") list1 = [int(input()) for i in range(n)] print(list1) :)
@midhileshmomidi24345 жыл бұрын
Hi mam, I have a doubt in for loop I want to use this for a in range(1,10): for b in range(1,10): for c in range(1,10): Can the above 3 lines be written like this ? for a,b,c in range(1,10): If anyother way please explain
@AmulsAcademy5 жыл бұрын
if you execute this, for a,b,c in range(1,10): you will get error. No both are not same. You can see that from below example. #nested for loop for a in range(3): for b in range(3): for c in range(3): print(a,b,c) print("*********************************") #Multiple variables for a,b,c in range(3),range(3),range(3): print(a,b,c) #list comprehension print("*******************************") [print(a,b,c) for a in range(3) for b in range(3) for c in range(3)] Execute this program. You can use list comprehension :)
@midhileshmomidi24345 жыл бұрын
@@AmulsAcademy Thanks mam
@rajm53494 жыл бұрын
how to get the resme shortlisted for an interview regarding python kindly help me
@SatyamKumar-ur2kr4 жыл бұрын
Did you start the language c
@AmulsAcademy4 жыл бұрын
Yes :)
@msgupta077 жыл бұрын
please add the range() function
@AmulsAcademy7 жыл бұрын
Will do:)
@defendersart30512 жыл бұрын
How to Print- Pyto ,, skiping the 'h', 'n'... Two letter skipped.??
@kundankumar-tj3te3 жыл бұрын
Hi Mam i want a pandas, deep learning, function all python series video. when will you upload
@abhijeetwagh42826 жыл бұрын
I can't understand the for loop execution. Why you took "python" in double quotes?
@AmulsAcademy6 жыл бұрын
It is a string. if i take for i in "python" intially i value will be "p" next "y" next "t" next "h" next "o" next "n" after this for loop will terminate. :)
@abhijeetwagh42826 жыл бұрын
@@AmulsAcademy Thanks mam💐... How can I build programming skill?
@AmulsAcademy6 жыл бұрын
By Practicing:)
@harshavardhanrajukondapall39252 жыл бұрын
You got better at coding... right?
@vigneshvaithya98385 жыл бұрын
mam what is membership opertor and what are membership operator
l=[];k=[];d=[];q=[] r=int(input("how many toys u have :")) N=int(input("no of boxes :")) for i in range(N): c=int(input("enter capacties : ")) l.append(c) t=int(input("enter toys here :")) k.append(t) print(k) print(l) res=[x + r for x in k] for i in l: if(res
@AmulsAcademy4 жыл бұрын
hey here you are comparing integer value with list that's why you are getting type error. While comparing the values, all the value should be of same type. Actually i didn't understand the program, but i hope this will be helpful to compare values of two lists. for i in l: for j in res: if(j
@MahEsh-jf7uu4 жыл бұрын
@@AmulsAcademy Thanks Madam Madam what should i do if i want to compare two lists l=[2,4,6,10] s=[1,2,5,6] i want to.compare parallel elements in a list like 2 1, 4 2, 5 6 , 10 6
@abgrafix6 жыл бұрын
So helpful .. thanks mann
@AmulsAcademy6 жыл бұрын
My Pleasure:)
@ashajyothi33824 жыл бұрын
will you please explain about Django
@Albertmars327 жыл бұрын
this one is a little bit tricky. im gonna have to watch it a few times in order for me to understand it fully
@AmulsAcademy7 жыл бұрын
If you have any doubts post a comment:)
@Albertmars327 жыл бұрын
sure will buddy. hey will you eventually when you finish this series (if you havent) make a tutorial on how to make a really simple application it could be a game or a calendar pretty much anything simple that a beginner will not struggle to follow?
@AmulsAcademy7 жыл бұрын
will try:)
@surendranathareddyt14912 жыл бұрын
Please make video on meta classes 🙂
@manishasoan64285 жыл бұрын
Pls add def function programs...
@electrictamilan13255 жыл бұрын
Mam pls upload more videos
@rajm53494 жыл бұрын
can i get any credit risk project explanation can i get any credit risk project explanation can i get any credit risk project explanation
@pushkaryadav300 Жыл бұрын
Thanks mam
@life_inked2 жыл бұрын
you are Magic
@williamjayaraj22442 жыл бұрын
Thank you.
@akashbirla72126 жыл бұрын
Can you give me with a handwritten note...plz
@akashbirla72126 жыл бұрын
akash.birla.prof@gmail.com
@AmulsAcademy6 жыл бұрын
Sorry i don't have any handwritten notes sorry:)
@akashbirla72126 жыл бұрын
It's okay Thank you
@knb84495 жыл бұрын
View the video and note down the point's… like a student… that's better…
@mdzahirkhan98933 жыл бұрын
gjb yaar
@bunnysunil5 жыл бұрын
Madam please provide MySQL database tutorials madam
@vijaysahal45564 жыл бұрын
👍👍👍👍👍
@SatyamKumar-ur2kr4 жыл бұрын
C language
@pluckybeast.3 жыл бұрын
One more thing that u haven't shown us your face yet
@AmulsAcademy3 жыл бұрын
I hope soon :)
@suzzitechhut35817 жыл бұрын
ok
@rajm53494 жыл бұрын
how to get the resme shortlisted for an interview kindly help me