Python learning
27K subscribers
209 photos
8 videos
75 files
118 links
Learn pythonπŸ”₯
Quality content πŸ˜‰
Get Python Course 😁
Download Telegram
PYTHON PROJECT FOR πŸ‘¨πŸΌβ€πŸ’»πŸ‘¨πŸΌβ€πŸ’»
πŸ‘37
Create Graphical User Interfaces with Python.pdf
11.3 MB
βœ… Book : Create Graphical User  Interfaces with Python – How to build windows, buttons, and widgets for your Python projects

βœ… Download now πŸš€
πŸ‘14
Python learning:
import turtle
a=turtle.Turtle()
a.getscreen().bgcolor("black")
a.penup()
a.goto(-200, 100)
a.pendown()
a.color("yellow")
a.speed(25)
def star(turtle, size):
    if size<=10:
        return
    else:
        turtle.begin_fill()
        for i in range (5):
            turtle.pensize(2)
            turtle.forward(size)
            star(turtle, size/3)
            turtle.left(216)
            turtle.end_fill()
star(a, 360)
turtle.done()
πŸ‘36πŸ”₯7❀5
Run this Code and send output screenshot
Website Which will teach you for freeπŸ™ŒπŸ»πŸ™ŒπŸ»πŸ™ŒπŸ»πŸ™ŒπŸ»
πŸ‘32
Creators of programming language πŸ™ŒπŸ»πŸ™ŒπŸ»πŸ™ŒπŸ»
πŸ‘42❀21πŸ‘6πŸ₯°3🀩1
Which of the following character is
used to give single-line comments in
Python?
Anonymous Quiz
25%
//
61%
#
4%
!
11%
/*
😒13πŸ‘10❀6πŸ‘6😁1
πŸ‘19πŸ”₯4
Turtle Clock.txt
3.6 KB
Code file for Clock program
πŸ‘6πŸ”₯4
COMPANIES THAT DONT ASK FOR DEGREEπŸ™ŒπŸ»πŸ™ŒπŸ»πŸ™ŒπŸ»πŸ™ŒπŸ»
πŸ‘59πŸ”₯16❀7πŸ€”6😁5πŸ‘3
Which one of the following is not a
keyword in Python language?
Anonymous Quiz
29%
eval
9%
pass
9%
def
54%
nonlocal
πŸ€”18😁11😒7πŸ‘3
5_6125174816421970019.pdf
416.5 KB
TCS Important Interview Preparation Questions
πŸ‘14
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ˜‚πŸ˜‚πŸ˜‚
😁68❀13πŸ‘10πŸ₯°4😒4πŸ”₯3
from turtle import *

speed(0)
bgcolor('black')
color('orange')
hideturtle()

n = 1
p = True

while True:
circle(n)
if p:
n = n - 1
else:
n = n + 1

if n == 0 or n == 60:
p = not p

left(1)
forward(3)

done()
πŸ‘49
Run this Code and send output screenshot
Remove Background Using Python πŸ”₯πŸ™ŒπŸ»
πŸ‘24πŸ”₯10
What will be the output of this
function?
>>round (4.576)
Anonymous Quiz
27%
4
7%
576
29%
4.6
37%
5
πŸ‘22❀6😒6