---
title: "Array in python"  
description: "Array in python"  
author: "Anonymous User"  
published: 2018-07-03  
updated: 2018-07-03  
canonical: https://www.mindstick.com/forum/34574/array-in-python  
category: "python"  
tags: ["array", "array list", "python"]  
reading_time: 1 minute  

---

# Array in python

[Explain](https://www.mindstick.com/forum/157854/what-is-system-debugging-explain-some-system-debugging-tools-used-in-modern-computer-systems) all [arrays](https://www.mindstick.com/articles/11955/arrays-and-its-limitations) in [Python](https://www.mindstick.com/articles/75378/simple-yet-useful-tips-when-using-python) ?

## Replies

### Reply by Prakash nidhi Verma

Python Collections (Arrays) :

There are four data types in the Python Array:

1. List : ordered,changeable, duplicate members.

Ex.

```
thislist = ["apple", "banana", "cherry"]
print(thislist)
```

2. Tuple : ordered,unchangeable,duplicate members.

Ex:

```
thistuple = ("apple", "banana", "cherry")
print(thistuple)
```

3. Set : unordered, unindexed,No duplicate members.

ex.

```
thisset = {"apple", "banana", "cherry"}
print(thisset)
```

4. Dictionary :unordered, changeable, indexed,No duplicate members.

ex.

```
thisdict = {   "apple": "green",
  "banana": "yellow",
  "cherry": "red"
}
print(thisdict)
```


---

Original Source: https://www.mindstick.com/forum/34574/array-in-python

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
