+1 (315) 557-6473 

Python Program to Implement Spyder Familiarization Assignment Solution.


Instructions

Objective
Write a Python assignment to implement spyder familiarization. In this assignment, you will be tasked with creating a program that introduces students to Spyder, a popular integrated development environment (IDE) for Python. The goal is to help students become comfortable with Spyder's features and functionalities while writing Python code. This hands-on assignment will provide step-by-step instructions for setting up Spyder, creating a new project, navigating the IDE, and writing a simple Python program. By completing this assignment, students will not only gain practical experience with Spyder but also enhance their coding skills 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)

"""