+1 (315) 557-6473 

Python Program to Implement Spyder Familiarization Assignment Solution.


Instructions

Objective
Write a program to implement spyder familiarization in python.

Requirements and Specifications

program to implement spyder familiarization in python
program to implement spyder familiarization in python 1

Source Code

import numpy as np

myname = input('My name is:')

array1 = np.linspace(1,10,10)

array2 = np.linspace(20,35,16).reshape(2,8)

array3 = np.linspace(100,135,36).reshape(2,3,6)

notarray = 6.7

"""

    PROBLEM 7

"""

array1.reshape(1, 16)

array2.reshape(4,4)

array3.reshape(4,4,2)

"""