Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

sumMatrix(numMat) Function that sums the elements of a Matrix represented as a nested list of integers. (Python Language) All input values are taken from the

sumMatrix(numMat) Function that sums the elements of a Matrix represented as a nested list of integers. (Python Language)

All input values are taken from the user.

Sample code: (this function finds the greater of 4 number, I need a fuction that sums the elements of a Matrix represented as a nested list of integers)

# Function Name: greatestOfFour

# Desc: Finds greatest of 4 numbers

# Parameters: num1-int, num2-int, num3-int, num4-int

# Return: int

defgreatestOfFour(num1, num2, num3, num4):

if num1>num2>num3>num4:

return num1

elif num2>num3>num4:

return num2

elif num3>num4:

return num3

else:

return num4

# Test Code

# Initialize Variables

num1=num2=num3=num4 = 0

# Read Input

print("Enter four numbers to check the greatest: ")

num1 =input("1st num: ")

num2 =input("2nd num: ")

num3 =input("3rd num: ")

num4 =input("4th num: ")

# Call function for Process and Output

print("Greatest of 4 numbers: ", greatestOfFour(int(num1),int(num2),int(num3),int(num4)))

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 Universal Database V7.1 Application Development Certification Guide

Authors: Steve Sanyal, David Martineau, Kevin Gashyna, Michael Kyprianou

1st Edition

0130913677, 978-0130913678

More Books

Students also viewed these Databases questions

Question

At what level(s) was this OD intervention scoped?

Answered: 1 week ago

Question

3. You can gain power by making others feel important.

Answered: 1 week ago

Question

Write down the circumstances in which you led.

Answered: 1 week ago