You have already completed these exercises!
Do you want to take them again?
You completed the NUMPY Iteration Arrays Exercises from W3Schools.com
Share on:
Consider the following code:import numpy as nparr = np.array(['a', 'b', 'c'])for x in arr: print('Hello ' + x)What will be the printed result?
import numpy as nparr = np.array(['a', 'b', 'c'])for x in arr: print('Hello ' + x)
Hello a b c
Hello ['a', 'b', 'c']
Hello aHello bHello c