Advertisements
Advertisements
प्रश्न
Create the following NumPy arrays:
A 1-D array called vowels having the elements ‘a’, ‘e’, ‘i’, ‘o’ and ‘u’.
कोड लेखन
Advertisements
उत्तर
A 1-D NumPy array called vowels containing the elements 'a', 'e', 'i', 'o' and 'u' can be created as follows:
import numpy as np
vowels = np.array(['a', 'e', 'i', 'o', 'u'])
print(vowels)
Output:
['a' 'e' 'i' 'o' 'u']
Thus, vowels is a 1-D NumPy array containing the five vowel elements.
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
