Python learning
27.3K subscribers
209 photos
8 videos
75 files
118 links
Learn pythonπŸ”₯
Quality content πŸ˜‰
Get Python Course 😁
Download Telegram
Code πŸ‘‡πŸ‘‡

import turtle as tur
import colorsys as cs
tur.setup(800,800)
tur.speed(0)
tur.width(2)
tur.bgcolor("black")
for j in range(25):
for i in range(15):
tur.color(cs.hsv_to_rgb(i/15,j/25,1))
tur.right(90)
tur.circle(200-j*4,90)
tur.left(90)
tur.circle(200-j*4,90)
tur.right(180)
tur.circle(50,24)
tur.hideturtle()
tur.done()
In Python Programming, Set can be
defined as:
Anonymous Quiz
63%
set()
32%
{}
5%
setOf()
What will be the output of the
following Python code snippet?
for i in [1, 2, 3, 4][:-1}: print (i)
Anonymous Quiz
44%
4 3 2 1
34%
Error
16%
1 2 3 4
6%
None
Python and Hacking with free Pdf downloadπŸ‘‰https://techprogramer.com/python-and-hacking-with-free-pdf-download/
what is output of print(math.pow(3,
2))?
Anonymous Quiz
28%
9.0
51%
9
14%
both
8%
none
JavaScript For Impatient Programmers with free Pdf downloadπŸ‘‰ https://techprogramer.com/javascript-for-impatient-programmers-with-free-pdf-download/
Complete python notes...