English

Create the following NumPy arrays: A 1-D array called vowels having the elements ‘a’, ‘e’, ‘i’, ‘o’ and ‘u’.

Advertisements
Advertisements

Question

Create the following NumPy arrays:

A 1-D array called vowels having the elements ‘a’, ‘e’, ‘i’, ‘o’ and ‘u’.

Code Writing
Advertisements

Solution

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
  Is there an error in this question or solution?
Chapter 6: Introduction to NumPy - Exercise [Page 113]

APPEARS IN

NCERT Informatics Practices [English] Class 11
Chapter 6 Introduction to NumPy
Exercise | Q 4. b) | Page 113
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×