import turtle as t import colorsys t.bgcolor("black") t.tracer(100) t.pensize(1) h=0.5 for i in range (250): c=colorsys.hsv_to_rgb(h,1,1) h=0.0008 t.fillcolor(c) t.begin_fill() t.fd(i) t.lt(100) t.circle(30) for j in range(2): t.fd(i*j) t.rt(109) t.end_fill()
@IfYouEscapedYTKidsIWillGetYou2 ай бұрын
bro, who the hell uses turtle who has more than 2yrs experience
@LowerGdev2 ай бұрын
Kkk
@Everyo113Ай бұрын
❤it works
@theterpenater6414Ай бұрын
@@LowerGdevthat's crazy
@aakashkumar-ry8umАй бұрын
Bro tell me - Kahan se sikhi kya
@brijeshchaudhari71849 ай бұрын
Awesome! Keep it up
@keonb8632 ай бұрын
meanwhile me print ("Hello world")
@SilkySnow9Ай бұрын
Trust me that's the start of every legends
@Idk_rylАй бұрын
@@SilkySnow9bith go kitchen and shut up
@Shlokkakade8Ай бұрын
And I'm doing print (5)
@nikola8656Ай бұрын
Same 😢
@Shlokkakade8Ай бұрын
@nikola8656 us bro us
@mhinfo2248 Жыл бұрын
good jobe, عمل جيد وممتاز
@LXNGVXB7 ай бұрын
yeah
@SmithNguyen427 ай бұрын
Wow ! It easier than I thought 😅
@himaMyth3 ай бұрын
how abt the script?
@SmithNguyen423 ай бұрын
@@himaMyth It mean when you click in the game window, the program will get the mouse position and then it draw a circle with the mouse position that you clicked.
@himaMyth3 ай бұрын
@@SmithNguyen42 oooo. Thank you.
@IfYouEscapedYTKidsIWillGetYou2 ай бұрын
@@himaMyth yes its very easy he meant to program
@8bitegaming14320 күн бұрын
No it's difficult but easy who take it easy
@Molodykwithaxe_prod_HD3 ай бұрын
Good!!! Thabks very much
@S-Lomar14 күн бұрын
Thanks for sharing ❤❤❤😂😂😂😂❤❤❤❤❤😢😢😮😮😮😅😅😊😊😊😊😊😊
@Cyberabhi09 Жыл бұрын
Bg song is awesome 👍 and nostalgic
@Itsmejawaddarwish24 күн бұрын
good job, Creative_wiz
@_____JUNPark_____ Жыл бұрын
you forgot last line. "if py.event.get(py.QUIT): exit()" Otherwise it won't exit even you press X button.
@Creative_wiz Жыл бұрын
Im making a whole game, that will be covered in next part.
@JesusAlmadaKb8 ай бұрын
That way it looks very good, I didn't know that. In my case I had to write: run = True while run: for event in py.event.get(): if event.type == py.QUIT: run = False
@Appol30108 ай бұрын
@@JesusAlmadaKbin my opinion, it is better
@tardissing56008 ай бұрын
@@JesusAlmadaKbyour code reads better and is cleaner. It just depends on preference as well.
@codingmf19802 ай бұрын
G
@MrChungmen8 ай бұрын
do I need to download any app or software?
@Creative_wiz7 ай бұрын
Yes! Install python and visual studio code editor.
@ElderBowАй бұрын
Software/Text editor you are using?
@Creative_wizАй бұрын
Vs code editor.
@SuperCuber-xu4xpАй бұрын
@@Creative_wizi thought u use pycharm
@anitareganyalorАй бұрын
@@Creative_wiz how did you get pygame in vs code pls
@AnshumanGarg0072 ай бұрын
from where you are executing
@mahidmunna013 ай бұрын
Your code is knowledge is strength ❤
@erezberez179 күн бұрын
import turtle import colorsys # Initialize the turtle turtle.speed(0) turtle.bgcolor("black") # Initialize hue value h = 0 # Outer loop for 16 repetitions for i in range(16): # Inner loop for drawing 18 shapes for j in range(18): # Get the color using HSV to RGB conversion c = colorsys.hsv_to_rgb(h, 1, 1) turtle.color(c) # Increment hue for the next color h += 0.05 # Draw shapes turtle.right(0) turtle.circle(150 - j * 6, 90) turtle.left(90) turtle.circle(150 - j * 6, 90) turtle.right(180) turtle.circle(40, 24) # Complete the drawing turtle.done()
@Creative_wiz9 күн бұрын
Nice
@GregBubak4 күн бұрын
woah thanks
@EstoloReal4 күн бұрын
That was fast im a little bit slower 😂
@it_learning_eko Жыл бұрын
fine , its good
@erick-ictАй бұрын
l want to learn programming
@erick-ictАй бұрын
How can l learn programming but I don't have money, l need a sponsor
@FUNTIME-jf7rv22 күн бұрын
@@erick-ictor you can read books lots of information there I'd recommend the python Bible 7 in 1 it has most if not everything you will ever need for python
@corkycraft906712 күн бұрын
@@erick-ict u dont need money, u just need a laptop and a yt.BOOM!!! You are programmer.
@tyson74479 ай бұрын
GG BRO
@tigerffshorts Жыл бұрын
Bhi app yeh cooding python ky kis software pr kartey ho ye python idle Hain ya pycharm ya much aur
@Creative_wiz Жыл бұрын
Vs code hai bhai😊
@vivekrana41223 ай бұрын
Bro vs code pr phython ki bhi coding kr skte
@jeetsasmal94758 күн бұрын
Keep up it
@Anvitkhandare6 ай бұрын
Bhai aap anniversary pc per kaunsi softwere use karteho
@islamhassan60464 ай бұрын
visual studio Code
@DizzyJay-sm4rqАй бұрын
Which application did you use
@thefoxicreator4556Ай бұрын
Did you mean the python library or the code editor?
@stawollor-ni4ym10 ай бұрын
I did this, but it doesn't work. Please tell me how. An error keeps occurring in line 3.
@Creative_wiz10 ай бұрын
Hi make Sure that pygame library is installed. Here is the full organised code. import pygame import sys pygame.init() width, height = 800, 600 screen = pygame.display.set_mode((width, height)) pygame.display.set_caption("Yellow Circle Border Demo") circle_radius = 30 border_thickness = 2 circle_color = (255, 255, 0) running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False elif event.type == pygame.MOUSEBUTTONDOWN: if event.button == 1: circle_position = event.pos pygame.draw.circle(screen, circle_color, circle_position, circle_radius, border_thickness) pygame.display.flip() pygame.quit() sys.exit()
@blasters00015 ай бұрын
@@Creative_wiz ye copy paste krdu to chal jayega kya ?
@MrNotYt715 күн бұрын
Which app is this ?
@Creative_wiz11 күн бұрын
Vs code editor.
@danielonyedikachiokwandu69273 ай бұрын
Most you be online using pycharm???
@dynahzm22 күн бұрын
looks like VS code to me
@parekvrohlikuskecupem58218 ай бұрын
What is the program name
@Creative_wiz7 ай бұрын
Its python programming, in this code pygame library of python is used.
@TechBox20263 ай бұрын
Good
@mr.mortaza2 ай бұрын
wtf it really works wowwwwowowowowowoow
@mitosisforever6428Ай бұрын
create the window, events like mouse get position and draw a circle with that position. i understand that
@Efcetro.7 ай бұрын
is this vsc or what editor are you using
@Creative_wiz7 ай бұрын
Yes! It is vs code
@Efcetro.7 ай бұрын
k
@GregBubak4 күн бұрын
2:00
@CodewithAnHome3 ай бұрын
nice video
@QuackQuack66 ай бұрын
what's your theme? looks good
@Creative_wiz6 ай бұрын
Its Synthwave 84
@lakshminarayana59328 ай бұрын
Thanks bro its real!!
@priyanshuverma5229Ай бұрын
Which application
@Creative_wizАй бұрын
Vs code editor
@Tyson08-xt2 ай бұрын
Software name??
@Creative_wiz2 ай бұрын
Vs code editor with 'synthe wave 84' theme
@jaswantbalian44336 ай бұрын
Awesome!
@catzforlife575 Жыл бұрын
After py.draw.circle the numbers are 20 5 what's after that?
@mestresplinter24678 ай бұрын
radius and line width
@jasoneloim2244Ай бұрын
@@mestresplinter2467 what should I write? 🤧
@shoxjaxonnurxonov29844 ай бұрын
Like it
@SpiderMan-ze2qm4 ай бұрын
Cool! Is there any other games though?
@Creative_wiz4 ай бұрын
Yes.
@ashersilver73886 ай бұрын
Whats the 20 and 5 for? In the draw.circle()
@erty-hc6jb3 ай бұрын
center and radius. you can check the pygame docs for more info too
@kairuannewambui84566 ай бұрын
Learning coding, yeap
@ptchouhan7963 Жыл бұрын
want full video
@rajchouhan561821 сағат бұрын
Konsa version h ye
@Kevin-k8j7 ай бұрын
Where can i run this code?
@Creative_wiz7 ай бұрын
We can run both in pc and phone, install python and vs code in pc, for phone install pydroid 3 from playstore.
@Kevin-k8j7 ай бұрын
Can you do a tutorial pls?
@VirtualWorld-wv2um4 ай бұрын
❤which audio!?
@rajvijoriya Жыл бұрын
bhai mere ko bhi coding sikhani hai
@witty.coder110 ай бұрын
Check my channel for tutorials
@HikayemBitmedi-mj1qg3 ай бұрын
Wow!Thats cool😮
@road_to_success54163 ай бұрын
Which code editor or ide you use ?
@Creative_wiz3 ай бұрын
Its vs code editor with 'synthe wave 84' theme
@oldguitarist-pl6 ай бұрын
what's the use of learning it?
@ImranMohammed-v6i2 ай бұрын
Please which app is this?
@oustted2 ай бұрын
Python with pygame
@Art1cG4 ай бұрын
What type of python is this
@Creative_wiz4 ай бұрын
@@Art1cG its pygame library of python.
@stayingintherain012 ай бұрын
0:11
@ervanrara416216 күн бұрын
Print(input('hello'))
@LinusRamzexs6 ай бұрын
What did you run?
@HelloCheck084016 күн бұрын
Blud is going to get hit with a 100 errors after trying to close the program
@Cve0w4 ай бұрын
Is that vsc ? Or something
@jaswantbalian44336 ай бұрын
GG bro
@Shorts-n3-l5p5 ай бұрын
Bro what game engine?
@urchiin5 ай бұрын
💀💀💀
@Uttam123404 ай бұрын
How can i start it
@Creative_wiz2 ай бұрын
Start with basic python
@baddanethebeast2458Ай бұрын
What do you type that in
@angpanha35663 ай бұрын
Wait, so it draws a circle everytime the mouse button is released?
@jaswantbalian44336 ай бұрын
DANG, YOU’RE GOOD
@Techmind0092 ай бұрын
❤❤ 🇵🇰 🇵🇰 🇵🇰 🇵🇰 keep it up
@aastha727022 күн бұрын
website name
@AchillesMarasigan25 күн бұрын
I wana try ît
@sohrabansari5324 күн бұрын
File save kaise karte hai
@jaswantbalian44336 ай бұрын
Dang, you’re good
@Shemtoi-v2g6 ай бұрын
🎉❤😂🎉0aaa
@VictorAgbai-g9z3 ай бұрын
How can I learn
@zachyy47914 ай бұрын
You forgot to add a quit event, now you are stuck in the game forever drawing endless circles over and over again 😂
@GrowMode_YT4 ай бұрын
Relaunch active terminal and task manager can close it, but yeah, he did forget to add a way to close it
@zachyy47914 ай бұрын
@@GrowMode_YT that sure is a way but I guess they should just add it, should be second nature really
@alyme_r2 ай бұрын
just select the terminal and do ctrl+c
@niksbiedrins77414 ай бұрын
pygame good for small projects horrible for big projects
@tharvinofficial85935 ай бұрын
Bro which website
@X-AK.020105 ай бұрын
Vs code
@emmanuelekpar5 ай бұрын
Bro just use the full name for the variables instead of ev for event. It makes it easier to read your code
@Hey312597 ай бұрын
App name
@Creative_wiz7 ай бұрын
vs code editor.
@fikilbi6 ай бұрын
@@Creative_wiz or visual studio code
@JayveeAndonganАй бұрын
As 1 is 2 for 3
@seanclarencesalipong79364 ай бұрын
My brain can't process because there are not many available codes I can get to make the game work. 👁👄👁
@sian-n5nАй бұрын
Which IDE is this
@techgoat6185 ай бұрын
Nice example but using vim on a MacOS system, then “x” out fails to close the pygame instance, is there a simple fix?
@maln406015 күн бұрын
😮I make it in phone pydroid 3 it runs well but shows me only black screen when I though the screen circles don't show
@NirmataAviation5 ай бұрын
what was this coded on
@Creative_wiz5 ай бұрын
Vs code editor
@charlita253 ай бұрын
🎮🕹
@krvinandanofficial2546 ай бұрын
300/400❤✌️
@Shreyash010sАй бұрын
Free fire❤
@marconisuchiha65047 ай бұрын
Gente, programação é para poucos 😢
@2ch9217 ай бұрын
É nada
@marconisuchiha65047 ай бұрын
@@2ch921 😂😂😂😂
@Anak_siapa25117 ай бұрын
Engine?
@terimotff83202 ай бұрын
Mobile run ho sakta he
@Creative_wiz2 ай бұрын
@@terimotff8320 Haa, pydroid app pe run hoga, make sure to install pygame library.
@skcyberhunter44 Жыл бұрын
Bro give me a source code of this project
@Creative_wiz Жыл бұрын
Sure, this a galaxy attack, shooting game. Source code is available on my telegram channel. So please join.
@evanskhaemba1276Ай бұрын
Been stuck on print hello world😂
@gorangghosh12934 ай бұрын
Laptop main tumhara code kaam nhi kar raha hai
@samadeyc86936 ай бұрын
Looks like Javascript
@Karan-yy4hy7 күн бұрын
It showing NameError: name 'true' is not defined, even in 4th line i used capital T for True, what's the solution for this?
@Rakesh-hc3tl5 ай бұрын
Bro this program error bro பொய்யானது
@SatishChandra-zo6dg4 ай бұрын
Plg give anyone app link or app name to me
@Vllnz8286 ай бұрын
when i run it it says no module name pygame what should i do?
@Creative_wiz6 ай бұрын
No worries, we need to install pygame library, it do not comes with python we need to install it. Go to terminal and run command 👉 'pip install pygame'
@jerrytom21572 ай бұрын
Damn all that work for 3 rounds
@anitareganyalorАй бұрын
Is this vs code
@Creative_wizАй бұрын
Yes.
@OndrejFilip-z2yКүн бұрын
Rare moment of someone not using chatgpt and copying other codes