Some functions#1 Get link Facebook X Pinterest Email Other Apps - July 10, 2020 # sf=["sfjgj","zgrgrgr","fsdegf","gtezger"]# print(sf)number = [2,5,7,8,6,3,1]number.reverse()number.sort()print(number[4])print(number[2:8])print(len(number))print(number) Get link Facebook X Pinterest Email Other Apps Comments
Y.T Videos downloader [Python] - January 27, 2021 Firstly install pytube module by typing "pip install pytube" in terminal For downloading .py file : alexjr.itch.io from pytube.cli import on_progress from pytube import YouTube import os video_url = input ( "Paste Link Here :" ) try : yt = YouTube(video_url , on_progress_callback =on_progress) yt.streams\ .filter( file_extension = 'mp4' )\ .get_highest_resolution()\ .download() except EOFError as err: print (err) else : print ( "Downloaded Successfully :)" ) Read more
Turtle in python - October 12, 2020 Firstly install Turtle by typing in terminal : pip install pythonturtle And then run code # Python program to draw # Rainbow Benzene # using Turtle Programming import turtle colors = [ 'red' , 'purple' , 'blue' , 'green' , 'orange' , 'yellow' ] t = turtle.Pen() turtle.bgcolor( 'black' ) for x in range ( 360 ): t.pencolor(colors[x% 6 ]) t.width(x/ 100 + 1 ) t.forward(x) t.left( 59 ) Read more
Comments
Post a Comment
Comment if you need help .I will not replay sometimes