❓ Help Pa help po python program

Certainly! You can create a Python function that performs all of these operations by utilizing the basic arithmetic operators and the built-in math module. Here's an example:

Python:
import math

def perform_operations(x, y):
    addition = x + y
    subtraction = x - y
    division = x / y
    multiplication = x * y
    power = math.pow(x, y)

    return addition, subtraction, division, multiplication, power

# Testing the function
num1 = 10
num2 = 5

result = perform_operations(num1, num2)
print(f"Addition: {result[0]}")
print(f"Subtraction: {result[1]}")
print(f"Division: {result[2]}")
print(f"Multiplication: {result[3]}")
print(f"Power: {result[4]}")

In the above code, the perform_operations function takes two arguments x and y, which represent the two numbers to be operated on. The function then performs addition, subtraction, division, multiplication, and power operations on the numbers using the appropriate operators and the math.pow function from the math module.

You can test the function by passing different values to num1 and num2 variables. The function will print the results of all the operations.
 

About this Thread

  • 1
    Replies
  • 336
    Views
  • 1
    Participants
Last reply from:
Unknown user

Trending Topics

Online now

Members online
1,049
Guests online
1,709
Total visitors
2,758

Forum statistics

Threads
2,283,106
Posts
29,013,419
Members
1,222,291
Latest member
serapio062562
Back
Top