março 24, 2024 O que são listas em Python? (What are lists in Python?) Em Português: Em Python, listas são usadas para armazenar múltiplos itens em uma única variável. Elas são um dos quatro tipos de dados embutidos no Python que são usados para armazenar coleções de dados, sendo os outros Tupla, Conjunto e Dicionário. Listas são criadas usando colchetes e podem conter itens de diferentes tipos de dados, incluindo strings, inteiros, booleanos e até outras listas, o que as torna bastante versáteis. Aqui está um exemplo simples de uma lista em Python: # Criando uma lista com vários tipos de dados minha_lista = ["maçã", 34, True, 40, "banana"] Listas são: Ordenadas: Os itens têm uma ordem definida que não mudará. Modificáveis: Você pode alterar, adicionar e remover itens depois que a lista foi criada. Permitem duplicatas: Listas podem ter itens com o mesmo valor. Para acessar itens em uma lista, você usa o índice do item entre colchetes. Por exemplo, minha_lista[0] retornaria "maçã" da lista acima. Listas são uma parte fundamental do Python e são muito úteis em vários cenários de programação. In English: In Python, lists are used to store multiple items in a single variable. They are one of the four built-in data types in Python that are used to store collections of data, with the others being Tuple, Set, and Dictionary. Lists are created using square brackets and can contain items of different data types, including strings, integers, booleans, and even other lists, making them quite versatile. Here’s a simple example of a list in Python: # Creating a list with various data types my_list = ["apple", 34, True, 40, "banana"] Lists are: Ordered: The items have a defined order that will not change. Changeable: You can change, add, and remove items after the list has been created. Allow duplicates: Lists can have items with the same value. To access items in a list, you use the index of the item enclosed in square brackets. For example, my_list[0] would return "apple" from the list above. Lists are a fundamental part of Python and are very useful in various programming scenarios. References: [1]D. Stamenic, “Guide to Lists in Python,” Stack Abuse, Sep. 08, 2023. [Online]. Available: https://stackabuse.com/guide-to-lists-in-python/ [2]L. Tagliaferri, “Understanding Lists in Python 3,” DigitalOcean, Aug. 20, 2021. [Online]. Available: https://www.digitalocean.com/community/tutorials/understanding-lists-in-python-3 [3]S. Mahapatra, “How to Use Lists in Python – Explained with Example Code,” freeCodeCamp.org, Mar. 01, 2024. [Online]. Available: https://www.freecodecamp.org/news/how-to-use-lists-in-python/ [4]GfG, “Python Lists,” GeeksforGeeks, Aug. 02, 2023. [Online]. Available: https://www.geeksforgeeks.org/python-lists/ [5]“Python Lists.” [Online]. Available: https://www.w3schools.com/python/python_lists.asp Python