Data Analysis Foundations with PythonChapter 111

Chapter 5: NumPy Fundamentals

Section 2 of 4-~ 12 min read-Synced from Cuantum content
  1. What is NumPy mainly used for?
  2. - a) Text Manipulation
  • b) Scientific Computing
  • c) Web Development
  • d) Game Development
  1. How do you create a 3x3 matrix filled with 7s in NumPy?
  2. - a) np.array(3,3,7)
  • b) np.full((3,3), 7)
  • c) np.zeros((3,3)) + 7
  • d) np.ones((3,3)) * 7