Python Turtle Graphics - Patterns | Drawing Different Shapes

  Рет қаралды 41,676

Amulya's Academy

Amulya's Academy

Күн бұрын

Пікірлер: 66
@adityaprabhakar7368
@adityaprabhakar7368 4 жыл бұрын
You are doing amazing job. It helped me a lot in CS art integrated project.
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
Glad to hear that :)
@motivationalbhai406
@motivationalbhai406 6 жыл бұрын
your teaching style is best
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
Thank you:)
@nagoorshaik9653
@nagoorshaik9653 6 жыл бұрын
Thank u ...amulya..have a wonderful explain to us
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
Welcome:)
@solomon5050
@solomon5050 3 жыл бұрын
Excellant, my dear kid!!!
@ShahjalalFahad
@ShahjalalFahad 4 жыл бұрын
Very nice explanation. Amazing ❤❤
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
Thanks a lot 😊
@kamalakannan9283
@kamalakannan9283 2 жыл бұрын
Thank you so much mam....clear explanation
@marciosilvaroballo2338
@marciosilvaroballo2338 2 жыл бұрын
excellent video, thanks for making this content available
@vijaysahal4556
@vijaysahal4556 4 жыл бұрын
amazing 👍👍👍👍👍👍
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
Thanks a lot 😊
@arifanwer8189
@arifanwer8189 6 жыл бұрын
Ossam mam recently I starting your videos great explanation mam...
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
Thank you:)
@raogaru306
@raogaru306 9 ай бұрын
Very helpful ❤
@khushiparikh867
@khushiparikh867 4 жыл бұрын
Is it compulsory to come to home point after drawing each circle or can we directly use goto() ?
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
You can try with goto but you need to change value :)
@veeraregalla2460
@veeraregalla2460 4 жыл бұрын
Please post some videos on data structures
@zahidahmadallaie6824
@zahidahmadallaie6824 6 жыл бұрын
Very nice Thanku very much, having a nice session.
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
My pleasure :)
@sekharjalla3362
@sekharjalla3362 6 жыл бұрын
@@AmulsAcademy can u make vedio on python os madam
@bhupendravyas6213
@bhupendravyas6213 4 жыл бұрын
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
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
Function definition will be executed only when it is called till then program won't execute that. Program execution will start from import turtle :)
@bhupendravyas6213
@bhupendravyas6213 4 жыл бұрын
@@AmulsAcademy Thanks
@bhavyaaggarwal8558
@bhavyaaggarwal8558 4 жыл бұрын
Nice videos ma'am 👌
@fitincollections554
@fitincollections554 2 жыл бұрын
Excellent video !! was helpful
@korthiwadasathwika3186
@korthiwadasathwika3186 4 ай бұрын
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'?
@ravidwivedi7721
@ravidwivedi7721 4 жыл бұрын
Is there any vedio or lecture in which PYTHON ANIMATION can be learn also.....if yes then plz reply
@cartoonpage9696
@cartoonpage9696 4 жыл бұрын
Madam, can we do this problem by using for loops
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
You can try :)
@neelanshuagarwal4067
@neelanshuagarwal4067 6 жыл бұрын
we have to download python turtle graphics software to run turtle??
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
No :) Just import turtle module and you can start with the turtle :)
@shaiksiraj8761
@shaiksiraj8761 4 жыл бұрын
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
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
Give me the full program :)
@shaiksiraj8761
@shaiksiraj8761 4 жыл бұрын
@@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
@eymensyria6113
@eymensyria6113 4 жыл бұрын
If I want to draw a crescent, what is the method? Thank you
@eligiodu
@eligiodu 2 жыл бұрын
import turtle el=turtle.Turtle() wn=turtle.Screen() wn.bgcolor('black') el.color('yellow') el.begin_fill() el.fillcolor('yellow') el.circle(100) el.end_fill() el.up() el.bk(30) el.down() el.color('black') el.begin_fill() el.fillcolor('black') el.circle(80) el.end_fill() el.hideturtle() Happy coding!
@niteshrajak8061
@niteshrajak8061 3 жыл бұрын
Can we move this like motion of 🏀?
@neelanshuagarwal4067
@neelanshuagarwal4067 6 жыл бұрын
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
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
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 :)
@neelanshuagarwal4067
@neelanshuagarwal4067 6 жыл бұрын
@@AmulsAcademy how do i share my programm to you??
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
you can share here or on our fb page :)
@MDIMRAN-ze3rj
@MDIMRAN-ze3rj 3 жыл бұрын
Thank you mam
@saqibkhanz8417
@saqibkhanz8417 6 жыл бұрын
Ma'am tell me about (-50). And uploaded such type of video.
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
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.
@saqibkhanz8417
@saqibkhanz8417 6 жыл бұрын
Thank u ma'am
@rahulgoyalss
@rahulgoyalss 3 жыл бұрын
thanks for your suppport. voice is very sweet.
@chandrabose1013
@chandrabose1013 4 жыл бұрын
Nice
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
Thank you :)
@py_learn
@py_learn 5 жыл бұрын
how to highlights output by changing the colour
@arnegevaert7387
@arnegevaert7387 Ай бұрын
how do you go back i can't undo or redo
@_Princechauhan
@_Princechauhan 6 жыл бұрын
thank you
@AmulsAcademy
@AmulsAcademy 6 жыл бұрын
Welcome :)
@randonname-f8l
@randonname-f8l Жыл бұрын
❤❤❤
@eee_bangla
@eee_bangla 4 жыл бұрын
sweet mam
@AmulsAcademy
@AmulsAcademy 4 жыл бұрын
Thank you :)
@pUniTSuperrrstar
@pUniTSuperrrstar Жыл бұрын
import turtle as t t.speed(7) t.pensize(4) t.pencolor("white") t.bgcolor("black") t.begin_fill() t.fillcolor("green") t.circle(100) t.end_fill() t.circle(100,90) t.pencolor("white") t.right(90) t.forward(500) t.backward(500) t.forward(200) t.left(90) t.fd(400) t.bk(400) t.fd(400) t.right(90) t.fd(100) t.left(90) t.begin_fill() t.fillcolor("orange") t.circle(100) t.end_fill() t.pencolor("white") t.circle(100,180) t.right(90) t.pencolor("white") t.pensize(4) t.fd(200) t.left(90) t.fd(300) t.bk(1000) t.fd(700) t.right(90) t.fd(200) t.begin_fill() t.right(90) t.fillcolor("blue") t.circle(100) t.end_fill() t.circle(100,270) t.right(90) t.fd(300) t.left(90) t.fd(200) t.bk(500) t.fd(300) t.right(90) t.fd(300) t.right(90) t.begin_fill() t.fillcolor("red") t.circle(100) t.end_fill() t.circle(100,270) t.right(90) t.fd(200) t.left(90) t.fd(300) t.bk(1200) t.fd(900) t.right(90) t.fd(200) t.right(90) t.begin_fill() t.fillcolor("yellow") t.circle(100) t.end_fill() t.circle(100,270) t.right(90) t.fd(300) t.exitonclick()
@nitindabas1931
@nitindabas1931 5 жыл бұрын
Please make the video on bouncing balls with turtle
@enesdogan1801
@enesdogan1801 5 жыл бұрын
10000times okey ??
@santhoshk9285
@santhoshk9285 6 жыл бұрын
pickle ,decorator andha maari topic podungaadam
@arshiabadri5350
@arshiabadri5350 7 ай бұрын
Nice
@parashthakur6776
@parashthakur6776 Ай бұрын
❤❤❤
Python Turtle Graphics - Pattern 2 | Drawing Different Shapes
12:07
Amulya's Academy
Рет қаралды 58 М.
Python Turtle Graphics - Pattern 4 | Drawing Heart Shape
10:39
Amulya's Academy
Рет қаралды 42 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Python Pattern Programs - Printing Strings in Right Triangle Shape
11:43
Amulya's Academy
Рет қаралды 171 М.
Dependency Injection, The Best Pattern
13:16
CodeAesthetic
Рет қаралды 903 М.
What is mathematical thinking actually like?
9:44
Benjamin Keep, PhD, JD
Рет қаралды 29 М.
Python Turtle Graphics Tutorial #2 - Shapes and Fills
10:21
Tech With Tim
Рет қаралды 93 М.
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 820 М.
Python Turtle Graphics - bgcolor() | title() | bgpic()
7:35
Amulya's Academy
Рет қаралды 96 М.
Python Turtle Graphics - Draw Circle | Fill Color | Circle Method
7:15
Amulya's Academy
Рет қаралды 55 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН