filmov
tv
#task10 Subtract the 1d array brr from the 2d array arr, such that each item of brr subtracts

Показать описание
#task10
def function10():
# Subtract the 1d array brr from the 2d array arr, such that each item of brr subtracts from respective row of arr.
subt = # write your code here
return subt
"""
Expected Output:
array([[2 2 2]
[2 2 2]
[2 2 2]])
"""
#Shaheencodingzone
Subscribe
liek
share
| Python Tutorial For Beginners
def function10():
# Subtract the 1d array brr from the 2d array arr, such that each item of brr subtracts from respective row of arr.
subt = # write your code here
return subt
"""
Expected Output:
array([[2 2 2]
[2 2 2]
[2 2 2]])
"""
#Shaheencodingzone
Subscribe
liek
share
| Python Tutorial For Beginners