There are three elements on each line in the input. Use them to create an array. Then check whether all array elements are greater than 15. Use a function that prints True if all the values meet the requirement, or False if they don't. The output must contain one Boolean value: True or False.
Boolean operations on arrays
Checking True values
Report a typo
Sample Input 1:
1
4
15Sample Output 1:
FalseWrite a program in Python 3
import numpy as np
a = int(input())
b = int(input())
c = int(input())
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.