Knowee
Questions
Features
Study Tools

Write a program to enter two numbers and print the arithmeticoperations like +,-,*,**, /, // and % using function

Question

🧐 Not the exact question you are looking for?Go ask a question

Solution 1

Sure, here is a simple Python program that performs arithmetic operations on two numbers:

def arithmetic_operations(num1, num2):
    print("Addition: ", num1 + num2)
    print("Subtraction: ", num1 - num2)
    print("Multiplication: ", num1 * num2)
    print("Exponent: ", num1 ** num2)
  
    Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  is a powerful AI-powered study tool designed to help you to solve study problem.
Knowee AI  

This problem has been solved

Similar Questions

find the output of given code.#include <stdio.h>int main(){int a,b=110,c=20;printf("%d",a=b-=c*=5);return 0;}-1045010110

The output of the code will be ____. int i=5; printf(“%d %d %d”, i, i++, ++i); ans. 5 5 7 7 6 6 7 6 5 7 6 7

The program must accept four integers a, b, c and d as input. The program must solve the equation b * c - (a + d) and print it as the output.

Type the program's outputa = int(input())b = int(input())c = int(input())while a < b: print(a) if a > c: break a += 2 Input2144Output

What will be the output of following program?main( ){int k, num = 30 ;k = ( num > 5 ? ( num <= 10 ? 100 : 200 ) : 500 ) ;printf ( "\n%d", num ) ;}

1/3

Upgrade your grade with Knowee

Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.