Calculator Using Python CODE a= int ( input ( "enter a number :- " )) c=( input ( "enter the operator :- " )) b= int ( input ( "enter other number :- " )) if c== "+" : print ( "the sum of number is" ,a+b) if c== "-" : print ( "the difference in number is" ,a-b) if c== "*" : print ( "the multiplication of number is" ,a*b) if c== "/" : print ( "the division of numbers is" ,a/b)
Download YouTube Video Using Python code from __future__ import unicode_literals import youtube_dl import urllib import shutil ydl_opts = {} with youtube_dl.YoutubeDL(ydl_opts) as ydl: ydl.download([ 'https://www.youtube.com/watch?v=Hw3NH_-_ja8' ]) # video will downloaded at the place of python file only
Comments
Post a Comment