QR Code Maker Using Pyhton Get link Facebook X Pinterest Email Other Apps February 07, 2021 QR Code Maker Using Pyhton CODEimport pyqrcode import png from pyqrcode import QRCode s = input("enter the url :- ")url = pyqrcode.create(s) url.png( 'qrcode.png', scale = 10) Get link Facebook X Pinterest Email Other Apps Comments
Design Using Python Turtle Graphics February 07, 2021 Design Using Python Turtle Graphics CODE from turtle import Turtle, Screen screen = Screen() screen.bgcolor( 'white' ) tim = Turtle() tim.color( 'red' ) tim.speed( 'fastest' ) def square (): for _ in range ( 4 ): tim.forward( 200 ) tim.right( 90 ) num = 75 while num != 0 : square() new_pointing = tim.heading() - 5 tim.setheading(new_pointing) num -= 1 screen.exitonclick() Read more
Comments
Post a Comment