1 / 7

Python Arrays

Arrays in Python

Himanshu90
Download Presentation

Python Arrays

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Python A Deep Dive Into Programming Fundamentals and Advanced Techniques

  2. ABOUT PYTHON High-level, Interpreted, and General- Purpose Programming Language. Open Source Created by Guido van Rossum Name is inspired by the British comedy Group Monty Python.

  3. Why Python? Readability and Simplicity Extensive Standard Library Large and Active Community

  4. Basic Program in Different Languages

  5. Technologies Making Use of Python Instagram Reddit Quora YouTube Mozilla Netflix Prezi Dropbox

  6. An array is a collection of items stored at contiguous memory locations. Arrays in Python

  7. Different Methods That Can Be Performed on Arrays append(): Adds an element at the end of the list clear(): Removes all the elements from the list copy(): Returns a copy of the list count(): Returns the number of elements with the specified value index(): Returns the index of the first element with the specified value insert(): Adds an element at the specified position pop(): Removes the element at the specified position

More Related