❓ 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
  • 352
    Views
  • 1
    Participants
Last reply from:
Unknown user

Trending Topics

Online now

Members online
1,113
Guests online
4,522
Total visitors
5,635

Forum statistics

Threads
2,309,645
Posts
29,151,626
Members
1,188,548
Latest member
jronquillo17
Back
Top