You are doing amazing job. It helped me a lot in CS art integrated project.
@AmulsAcademy4 жыл бұрын
Glad to hear that :)
@motivationalbhai4066 жыл бұрын
your teaching style is best
@AmulsAcademy6 жыл бұрын
Thank you:)
@nagoorshaik96536 жыл бұрын
Thank u ...amulya..have a wonderful explain to us
@AmulsAcademy6 жыл бұрын
Welcome:)
@solomon50503 жыл бұрын
Excellant, my dear kid!!!
@ShahjalalFahad4 жыл бұрын
Very nice explanation. Amazing ❤❤
@AmulsAcademy4 жыл бұрын
Thanks a lot 😊
@kamalakannan92832 жыл бұрын
Thank you so much mam....clear explanation
@marciosilvaroballo23382 жыл бұрын
excellent video, thanks for making this content available
@vijaysahal45564 жыл бұрын
amazing 👍👍👍👍👍👍
@AmulsAcademy4 жыл бұрын
Thanks a lot 😊
@arifanwer81896 жыл бұрын
Ossam mam recently I starting your videos great explanation mam...
@AmulsAcademy6 жыл бұрын
Thank you:)
@raogaru3069 ай бұрын
Very helpful ❤
@khushiparikh8674 жыл бұрын
Is it compulsory to come to home point after drawing each circle or can we directly use goto() ?
@AmulsAcademy4 жыл бұрын
You can try with goto but you need to change value :)
@veeraregalla24604 жыл бұрын
Please post some videos on data structures
@zahidahmadallaie68246 жыл бұрын
Very nice Thanku very much, having a nice session.
@AmulsAcademy6 жыл бұрын
My pleasure :)
@sekharjalla33626 жыл бұрын
@@AmulsAcademy can u make vedio on python os madam
@bhupendravyas62134 жыл бұрын
At last when u defined a function why import turtle and t = turtle.Turtle() was not at the starting.Means everytime we use turtle module that has to be at first lines
@AmulsAcademy4 жыл бұрын
Function definition will be executed only when it is called till then program won't execute that. Program execution will start from import turtle :)
@bhupendravyas62134 жыл бұрын
@@AmulsAcademy Thanks
@bhavyaaggarwal85584 жыл бұрын
Nice videos ma'am 👌
@fitincollections5542 жыл бұрын
Excellent video !! was helpful
@korthiwadasathwika31864 ай бұрын
mam iam getting this type of error how can i resolve it, AttributeError: partially initialized module 'turtle' has no attribute 'Turtle' (most likely due to a circular import). Did you mean: 'turtle'?
@ravidwivedi77214 жыл бұрын
Is there any vedio or lecture in which PYTHON ANIMATION can be learn also.....if yes then plz reply
@cartoonpage96964 жыл бұрын
Madam, can we do this problem by using for loops
@AmulsAcademy4 жыл бұрын
You can try :)
@neelanshuagarwal40676 жыл бұрын
we have to download python turtle graphics software to run turtle??
@AmulsAcademy6 жыл бұрын
No :) Just import turtle module and you can start with the turtle :)
@shaiksiraj87614 жыл бұрын
Mam for the above code i get an error as AttributeError: partially initialized module 'turtle' has no attribute 'Turtle' (most likely due to a circular import) can u please tell the solution for this MAm please
@AmulsAcademy4 жыл бұрын
Give me the full program :)
@shaiksiraj87614 жыл бұрын
@@AmulsAcademy import turtle t=turtle.Turtle() list1=["yellow","red","blue","green"] t.up() t.goto(200,0) for i in range(4): t.down() t.begin_fill() t.fillcolor(list1[i]) t.circle(50) t.end_fill() t.up() t.bk(100) this was the program Mam by running this program I got the above error Mam and then I close the idle and again open the program and run that same program for this time it give the output Mam. i am save the same progarm in new file and run it to test it is working or not and i am got the same erro and again I close the idle and open the progarm and run this time it give output this is happen for all my turtle programs mama for the first time they are not giving error by close it an runing it againg then the program giving output
@eymensyria61134 жыл бұрын
If I want to draw a crescent, what is the method? Thank you
i wrote the same first two lines and run them it shows error. AttributeError. Like module turtle has no attribute Turtle. Please solve it soon
@AmulsAcademy6 жыл бұрын
It won't work in python 2 because there is few changes in syntax. If you are using python 3 still not getting output then please share your program :)
@neelanshuagarwal40676 жыл бұрын
@@AmulsAcademy how do i share my programm to you??
@AmulsAcademy6 жыл бұрын
you can share here or on our fb page :)
@MDIMRAN-ze3rj3 жыл бұрын
Thank you mam
@saqibkhanz84176 жыл бұрын
Ma'am tell me about (-50). And uploaded such type of video.
@AmulsAcademy6 жыл бұрын
In the circle method if i give radius as positive value it will draw circle in anti clock wise direction. If you want clockwise then give radius in negative. In the program for last two circle i used -50 because i want that circle in clockwise direction.