Posts

About The Youtubers #2

  #Youtubers knowledge #For everyone So guys Here the answers. 1)Who is the  no.1 Indian  Youtuber? ----> Carryminati. 2)Who is no.1 programmer on youtube? ---> Adam khoury. 3)Who is the best gamer on youtube? --->Dynamo Gaming. 4) Subscribers of Ashish Chanchlani Vines? ---> 24,300,000 subscribers.   Hope You like this, Thanks for visiting to blog .

About The Youtubers

  #Youtubers knowledge #For everyone So guys we will discuss about the Indian Youtubers And I will ask questions about the youtubers and you have to give the answer . If you are not able then don't worry. I am there .In the next blog I will give the answer. 1)Who is the  no.1 Indian  Youtuber? ----> 2)Who is no.1 programmer on youtube? ---> 3)Who is the best gamer on youtube? ---> 4) Subscribers of Ashish Chanchlani Vines? ---> No more questions , Very soon I will let you know the answers, Thanks for visiting to blog .

Mini Faulty Calculator For Beginners

 # Faulty Calculator. # Python program for beginners. Hello ! Guys last time we saw the calculator .This time we will make Faulty Calculator  That means Input given by the user will be shown correctly accept 3 to 4 equations. That's Equations are  1) 56 + 9 = 77 2)56 / 6 = 4 3)45 * 3 = 154 Accept these 3 equations all the equal will be correct. print ( "First Choice the operation To do Calculation." ) print ( "Press + For Addition," ) print ( "Press - For Subtraction," ) print ( "Press * For Multiplication," ) print ( "Press / for Division," ) print ( " " ) print ( " " ) print ( "Enter the first value" ) num1 = int ( input ()) print ( "Enter the operation" ) num3= ( input ()) print ( "Enter the Second value" ) num2 = int ( input ()) if num1 == 56 and num2 == 9 and num3 == "+" : print ( "Your solution is 77 " ) elif num1 == 56 and num2 == 6 and nu

Mini Calculator for beginners

  #First project for Beginners  #code of python programming language def add (a,b): result=a+b print (result) def sub (a,b): result=a-b print (result) def mul (a,b): result=a*b print (result) def div (a,b): result=a/b print (result) a= int ( input ( "Enter the First number:" )) op= input ( "Enter the operation:" ) b= int ( input ( "Enter the Second number:" )) if op== "+" : add(a,b) elif op== "-" : sub(a,b) elif op== "*" : mul(a,b) elif op== "/" : div(a,b) else : print ( "Invalid operator" ) Use Pycharm or Vscode to use this code. I hope it is helpful Thanks for Visiting to my blog