File tree 3 files changed +84
-1
lines changed
3 files changed +84
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ __pycache__/
3
3
* .py [cod ]
4
4
* $py.class
5
5
6
+ .idea
7
+
6
8
# C extensions
7
9
* .so
8
10
Original file line number Diff line number Diff line change 1
- # Graphic-using-Python
1
+
2
+ # Graphic using python
3
+
4
+ In this project, you can do a Graphic start design. To make this project you need to follow this step:-
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+ ## Installation
16
+
17
+ Install package with pip
18
+
19
+ ``` bash
20
+ pip install turtle
21
+ pip install colorsys
22
+
23
+ ```
24
+
25
+ ## Deployment
26
+
27
+ To deploy this project run
28
+
29
+ ``` bash
30
+ from turtle import *
31
+ import colorsys
32
+
33
+ tracer(10)
34
+ bgcolor(' black' )
35
+ pensize(4)
36
+
37
+ h = 0
38
+
39
+ for i in range(411):
40
+ c = colorsys.hsv_to_rgb(h, 1, 1)
41
+ color(c)
42
+ h += 1/37
43
+ begin_fill ()
44
+ fillcolor(' black' )
45
+ left(120)
46
+ forward(i)
47
+ left(3)
48
+ circle(i,12)
49
+ end_fill ()
50
+
51
+ done ()
52
+ ` ` `
53
+
54
+
55
+ ! [output](https://user-images.githubusercontent.com/123636419/215391010-9fc558a2-8f0e-485e-9d09-8e22118e8c91.PNG)
56
+
57
+
Original file line number Diff line number Diff line change
1
+ from turtle import *
2
+ import colorsys
3
+
4
+
5
+ tracer (10 )
6
+ bgcolor ('black' )
7
+ pensize (4 )
8
+
9
+ h = 0
10
+
11
+ for i in range (411 ):
12
+ c = colorsys .hsv_to_rgb (h , 1 , 1 )
13
+ color (c )
14
+ h += 1 / 37
15
+ begin_fill ()
16
+ fillcolor ('black' )
17
+ left (120 )
18
+ forward (i )
19
+ left (3 )
20
+ circle (i ,12 )
21
+ end_fill ()
22
+
23
+ done ()
24
+
25
+
You can’t perform that action at this time.
0 commit comments