Python: Compute the largest product of three integers from a given list of integers
Python Basic - 1: Exercise-79 with Solution
Write a Python program to compute the largest product of three integers from a given list of integers.
Sample Solution:
Python Code:
def largest_product_of_three(nums):
max_val = nums[1]
for i in range(len(nums)):
for j in range(i+1, len(nums)):
for k in range(j+1, len(nums)):
max_val = max(nums[i] * nums[j] * nums[k], max_val)
return max_val
print(largest_product_of_three([-10, -20, 20, 1]))
print(largest_product_of_three([-1, -1, 4, 2, 1]))
print(largest_product_of_three([1, 2, 3, 4, 5, 6]))
Sample Output:
4000 8 120
Pictorial Presentation:
Flowchart:

Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to print a given N by M matrix of numbers line by line in forward > backwards > forward >... order.
Next: Write a Python program to find the first missing positive integer that does not exist in a given list.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join