The input consists of three lines, with each line containing a single element. Use these three elements to create an array. Check whether the elements are less or equal to 67. Print the resulting Boolean array.
Boolean operations on arrays
An array and an integer
Report a typo
Sample Input 1:
67
78
87Sample Output 1:
[ True False False]Write 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.