Posts

Showing posts from January, 2021
Image
Doreamon using PYTHON   from turtle import * def my_goto(x, y): penup() goto(x, y) pendown() #Draw eyes def eyes(): fillcolor("#ffffff") begin_fill() tracer(False) a = 2.5 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a -= 0.05 lt(3) fd(a) else: a += 0.05 lt(3) fd(a) tracer(True) end_fill() #Draw beard def beard(): my_goto(-32, 135) seth(165) fd(60) my_goto(-32, 125) seth(180) fd(60) my_goto(-32, 115) seth(193) fd(60) my_goto(37, 135) seth(15) fd(60) my_goto(37, 125) seth(0) fd(60) my_goto(37, 115) seth(-13) fd(60) def mouth(): my_goto(5, 148) seth(270) fd(100) seth(0) circle(120, 50) seth(230) circle(-120, 100) def scarf(): fillcolor('#e70010') begin_fill() seth(0) fd(200) circle(-5, 90

Programming Store Instagram

Image
Programming Store Programming Store © Copyright 2021 Programming.Store Telegram channel click here.. Instagram page click here..

Creating IRON-MAN Mark 50(MASK) using PYTHON😍

Image
IRON-MAN Mark 50 💨 Here we use Python for implementing our program. 💨 Source code : #DO FOLLOW US ON INSTA - @concepts.of.programming import turtle # Top Part piece1=[[(-40, 120), (-70, 260), (-130, 230), (-170, 200), (-170, 100), (-160, 40), (-170, 10), (-150, -10), (-140, 10), (-40, -20), (0, -20)],[(0, -20), (40, -20), (140, 10), (150, -10), (170, 10), (160, 40), (170, 100), (170, 200), (130, 230), (70, 260), (40, 120), (0, 120)]] # Middle Part piece2=[[(-40, -30), (-50, -40), (-100, -46), (-130, -40), (-176, 0), (-186, -30), (-186, -40), (-120, -170), (-110, -210), (-80, -230), (-64, -210), (0, -210)],[(0, -210), (64, -210), (80, -230), (110, -210), (120, -170), (186, -40), (186, -30), (176, 0), (130, -40), (100, -46), (50, -40), (40, -30), (0, -30)]] #Bottom Part piece3=[[(-60, -220), (-80, -240), (-110, -220), (-120, -250),(-90, -280), (-60, -260), (-30, -260), (-20, -250), (0, -250)],[(0, -250), (20, -250), (30, -260), (60, -260), (90, -280), (120, -250),(110, -220), (80, -2

Create Amazing Designs Using Python Programming 😍

Image
CREATE A M A Z I N G D E S I G N USING TURTLE      import turtle window = turtle.Screen() window.setup(600,600) spiral = turtle.Turtle() spiral.speed(10) window.bgcolor("black") colours=[" yellow ","blue"," white "," green "] c=0 # @concepts.of.programming (Follow us on instagram) for i in range(50): spiral.forward(i * 10) spiral.right(144) spiral.color(colours[c]) if c== 3: c = 0 else: c += 1 turtle.done() Following output is only for reference: 💬 Do follow us on Instagram:              IG- @concepts.of.programming

3 lines of python code Mp3 from Mp4

Image
  Extract mp3 From mp4 import moviepy video=moviepy.editor.VideoFilePath("") audio=video.audio  audio.write_audiofile('1.mp3')   💬  Follow us on instagram :     @concepts.of.programming