5.Python Basics Arrays,Modules & Loops

Опубликовано: 17 Июль 2026
на канале: Life After Graduation
43
1

Thanks for watching the video.

Also I would like to introduce you to our new course on udemy if interested. "Learn Python using Amazon SageMaker".Do try this URL: https://www.udemy.com/course/learn-py...

Arrays are used to store multiple values in one single variable.


What is an Array?
An array is a special variable, which can hold more than one value at a time.


Access the Elements of an Array
You refer to an array element by referring to the index number.


Python Modules
What is a Module?
Consider a module to be the same as a code library.
A file containing a set of functions you want to include in your application.


Use a Module
Now we can use the module we just created, by using the import statement