Python Projects & Free Courses
57.2K subscribers
87 photos
1 video
40 files
9 links
Free Python Projects & Free Courses
Download Telegram
Data Structures Interview Preparation ๐Ÿ–ฅ๏ธ๐Ÿ’ฏ๐Ÿš€
๐Ÿ‘81โค24๐Ÿ”ฅ6๐Ÿ‘5๐Ÿคฏ1
๐Ÿ‘33โค17๐Ÿฅฐ3๐Ÿ‘3๐Ÿ‘Ž2โšก1๐Ÿ˜1
WiFi Passwords Source Code python.coder_ (1).py
761 B
๐Ÿ‘206๐Ÿ†’94๐Ÿฅฐ30๐Ÿ‘19โค14๐Ÿ˜14๐Ÿ‘Ž7๐Ÿ”ฅ6๐Ÿ™2
--- Indian Flag๐Ÿ‡ฎ๐Ÿ‡ณ๐Ÿ‡ฎ๐Ÿ‡ณ Source Code ---

import turtle
from turtle import *

# setting the screen for drawing
scr = turtle.Screen()
# Defining the instance of turtle
ttl = turtle.Turtle()
speed(20)

# keeping the pen up initially
ttl.penup()
ttl.goto(-150, 125)
ttl.pendown(
)
# Drawing the Orange Rectangle first
#and then the white rectangle
ttl.color("orange")
ttl.begin_fill()
ttl.forward(400)
ttl.right(90)
ttl.forward(84)
ttl.right(90)
ttl.forward(400)
ttl.end_fill()
ttl.left(90)
ttl.forward(84)

# now drawing the Green Rectangle
ttl.color("green")
ttl.begin_fill()
ttl.forward(84)
ttl.left(90)
ttl.forward(400)
ttl.left(90)
ttl.forward(84)
ttl.end_fill()

# Drawing the central Big Blue Circle
ttl.penup()
ttl.goto(35, 0)
ttl.pendown()
ttl.color("navy")
ttl.begin_fill()
ttl.circle(35)
ttl.end_fill()

# Drawing the in-circle Big White Circle
ttl.penup()
ttl.goto(30, 0)
ttl.pendown()
ttl.color("white")
ttl.begin_fill()
ttl.circle(30)
ttl.end_fill()

#Drawing the inside Mini Blue Circles of Flag
ttl.penup()
ttl.goto(-27, -4)
ttl.pendown()
ttl.color("navy")
for j in range(24):
ttl.begin_fill()
ttl.circle(2)
ttl.end_fill()
ttl.penup()
ttl.forward(7)
ttl.right(15)
ttl.pendown()

# drawing the Smaller Blue Circle
ttl.color("navy")
ttl.penup()
ttl.goto(10, 0)
ttl.pendown()
ttl.begin_fill()
ttl.circle(10)
ttl.end_fill()

#Drawing the 24 spokes of the Indian Flag
ttl.penup()
ttl.goto(0, 0)
ttl.pendown()
ttl.pensize(1)
for j in range(24):
ttl.forward(30)
ttl.backward(30)
ttl.left(15)

#Drawing the stick of the Indian flag
ttl.color("Brown")
ttl.pensize(10)
ttl.penup()
ttl.goto(-150,125)
ttl.right(180)
ttl.pendown()
ttl.forward(500)

#to hide the turtle pen we used hideturtle
ttl.hideturtle()
#holding the output on the window
turtle.done()
๐Ÿ‘360โค60๐Ÿ”ฅ51๐Ÿ˜ฑ9๐Ÿ˜ข9โšก8๐Ÿ˜6๐Ÿ‘Ž5๐Ÿคฏ4๐Ÿฅฐ2๐Ÿ‘2
Python Projects & Free Courses pinned ยซ--- Indian Flag๐Ÿ‡ฎ๐Ÿ‡ณ๐Ÿ‡ฎ๐Ÿ‡ณ Source Code --- import turtle from turtle import * # setting the screen for drawing scr = turtle.Screen() # Defining the instance of turtle ttl = turtle.Turtle() speed(20) # keeping the pen up initially ttl.penup()โ€ฆยป
Who is the Father of Computer ๐Ÿค”
Anonymous Quiz
18%
Dennis Ritchie
74%
Charles Babbage
8%
James Gosling
๐Ÿ‘164๐Ÿ”ฅ28๐Ÿฅด14โค11๐Ÿ‘10๐Ÿฅฐ9๐Ÿ‘Ž4๐Ÿ˜ฑ4๐Ÿ™1
โค223๐Ÿ‘76๐Ÿ”ฅ29๐Ÿ‘13๐Ÿ—ฟ9๐Ÿคฉ8๐Ÿ’ฉ7๐Ÿ˜6๐Ÿณ6๐Ÿคฌ5๐ŸŒ5
๐Ÿ‘187โค48๐Ÿซก36๐Ÿ”ฅ19๐Ÿ‘5
Did you register in above Free Python & Coding Course Opportunity ๐Ÿค”๐Ÿค”
Anonymous Poll
63%
Yes done โœ…
37%
Doing SignUp now ๐Ÿš€
๐Ÿ‘35โค18๐Ÿฅฐ8๐Ÿ”ฅ7๐Ÿ‘6๐Ÿคฉ5
Important Methods in Python Programming
๐Ÿ‘88โค28๐Ÿ”ฅ8๐Ÿค”4๐Ÿ‘3
What is output of print(math.pow(3, 2))?
Anonymous Quiz
31%
9.0
49%
9
11%
None
9%
None of the mentioned
๐Ÿ‘111๐Ÿ”ฅ34๐Ÿค”17๐Ÿ‘Ž11๐Ÿฅฐ9โค7๐Ÿ˜6๐Ÿ‘3๐Ÿ™2
Important Computer Shortcuts ๐Ÿ’ป
๐Ÿ‘56โค37๐Ÿ‘24๐Ÿ”ฅ13๐ŸŽ‰8โšก6๐Ÿคฉ5๐Ÿฅฐ4