Answers for "python code calculator"

7

simple python calculator

#Store number variables for the two numbers

num1 = input('Enter first number: ')
num2 = input('Enter second number: ')

#the sum of the two numbers variable
sum = float(num1) + float(num2)
sum2 = float(num1) - float(num2)
sum3 = float(num1) * float(num2)
sum4 = float(num1) / float(num2)

#what operator to use
choice = input('Enter an operator, + = addition, - = subtraction, * = multiplication and / = division: ')
#different sums based on the operators
if choice == '+':
  print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))

  if choice == '-':
    print('The sum of {0} and {1} is {2}'.format(num1, num2, sum2))

if choice == '*':
    print('The sum of {0} and {1} is {2}'.format(num1, num2, sum3))

if choice == '/':
    print('The sum of {0} and {1} is {2}'.format(num1, num2, sum4))
Posted by: Guest on October-29-2020
1

create calculator in python

from tkinter import *
import random
import time

def btnClick(numbers):
	global operator
	operator = operator + str(numbers)
	text_Input.set(operator)

def bcd():
	global operator
	operator = ""
	text_Input.set("")

def bei():
	global operator
	sumup = str(eval(operator))
	text_Input.set(sumup)
	operator = sumup


root = Tk()
root.title("Calculator")
root.resizable(False, False)

operator = ""
text_Input = StringVar()

#AnsShow
textDisplay = Entry(root, font = ('arial', 20, 'bold'), textvariable = text_Input, bd = 30, insertwidth = 4, bg = "red", justify = 'right')
textDisplay.grid(columnspan = 4)

#button
btn7 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "7", command = lambda:btnClick(7)).grid(row = 1, column = 0)

btn8 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "8", command = lambda:btnClick(8)).grid(row = 1, column = 1)

btn9 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "9", command = lambda:btnClick(9)).grid(row = 1, column = 2)

Add = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "+", command = lambda:btnClick("+")).grid(row = 1, column = 3)

#============================================================================================================================#
btn4 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "4", command = lambda:btnClick(4)).grid(row = 2, column = 0)

btn5 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "5", command = lambda:btnClick(5)).grid(row = 2, column = 1)

btn6 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "6", command = lambda:btnClick(6)).grid(row = 2, column = 2)

Sub = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "-", command = lambda:btnClick("-")).grid(row = 2, column = 3)

#===============================================================================================================================#
btn1 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "1", command = lambda:btnClick(1)).grid(row = 3, column = 0)

btn2 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "2", command = lambda:btnClick(2)).grid(row = 3, column = 1)

btn3 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "3", command = lambda:btnClick(3)).grid(row = 3, column = 2)

Multiply = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "*", command = lambda:btnClick("*")).grid(row = 3, column = 3)

#==================================================================================================================================#
btn0 = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "0", command = lambda:btnClick(0)).grid(row = 4, column = 0)

equal = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "=", command = bei).grid(row = 4, column = 1)

divide = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "/", command = lambda:btnClick("/")).grid(row = 4, column = 2)

clear = Button(root, padx = 16, bd = 8, fg = "black", bg = "red", font = ('arial', 20, 'bold'), text = "c", command = bcd).grid(row = 4, column = 3)

root.mainloop()
Posted by: Guest on August-17-2021
0

how to make a calculator in python

# This will be one of the most advanced results you will find.

# We will be using classes and simple operators like +,-,*,/

class Calculator:
  def addition(a,b):
    return a + b

  def subtraction(a,b):
    if a<b:
      return b - a
    else:
      return a - b

  def multiplication(a,b):
    return a * b

  def division(a,b):	
    if a<b:
      return b / a
    else:
      return a / b

# You can do this in terminal.
<C:/Users/username>python
>>> from main import Calculator
>>> result = Calculator.[addition|subtraction|multiplication|division](anyNumber, anyNumber)
>>> print(result)
Posted by: Guest on October-11-2020
0

calculator in python

#Calculator in python
#No modules required
qus = input('')
if(qus=='ADDITON'):
  no1 = int(input())
  no2 = int(input())
  print(no1+no2)
  
if(qus=='MULTIPLICATION'):
  no1 = int(input())
  no2 = int(input())
  print(no1*no2)

if(qus=='DIVISION'):
  no1 = int(input())
  no2 = int(input())
  print(no1/no2)
  
if(qus=='SUBTRACTION'):
  no1 = int(input())
  no2 = int(input())
  print(no1-no2)
Posted by: Guest on October-04-2020
0

python calculator

import time
def cal():
    def add(x, y):
        print(x + y)

    def sub(x, y):
        print(x - y)

    def mul(x, y):
        print(x * y)

    def div(x, y):
        print(x // y)

    while True:
        print('Adding?(+) Subtracting?(-) Multiplying?(*) Dividing?(/)')
        answer = input('')
        if answer == "+":
            try:
                x = float(input('First number! '))
                y = float(input('Second Number! '))
            except Exception as e:
                print(f'Error: {e}')
                time.sleep(5)
                return
            add(x, y)
        elif answer == "-":
            try:
                x = float(input('First number! '))
                y = float(input('Second Number! '))
            except Exception as e:
                print(f'Error: {e}')
                time.sleep(5)
                return
            sub(x, y)
        elif answer == "*":
            try:
                x = float(input('First number! '))
                y = float(input('Second Number! '))
            except Exception as e:
                print(f'Error: {e}')
                time.sleep(5)
                return
            mul(x, y)
        elif answer == "/":
            try:
                x = float(input('First number! '))
                y = float(input('Second Number! '))
            except Exception as e:
                print(f'Error: {e}')
                time.sleep(5)
                return
            div(x, y)
        else:
            print('Error. Enter a valid input!')


cal()
Posted by: Guest on March-26-2021
0

calculator python

a=int(input("first number:"))
b=int(input("second number:"))
c=input("what you want +,-,*,/: please input sign:")
d=("+")
e=("-")
f=("*")
g=("/")
if c==d:
    print(f"your answer is: ({a+b})")
elif c==e:
    print(f"your answer is:({a-b})")
elif c==f:
    print(f"your answer is:({a*b})")
elif c==g:
    print(f"your answer is:({a/b})")
print ("thank you")
Posted by: Guest on October-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language