Tag: list

  • Learn python this summer Day 9: Lists and List Comprehensions

    Learn python this summer Day 9: Lists and List Comprehensions

    Welcome back! Yesterday, we learned about working with files in Python. Today, we’ll dive into lists and list comprehensions, which are powerful tools for working with collections of data. By the end of this day, you’ll know how to create, manipulate, and use lists efficiently. Let’s get started! What are…

  • Comparison: List (list) vs Array (array)

    Comparison: List (list) vs Array (array)

    Comparison: List (list) vs Array (array) Here’s a detailed comparison between Python’s list and array from the array module. Comparison Table 比较表 Feature List (list) Array (array) Definition Built-in mutable sequence Module-based sequence for storing homogeneous data 定义 内置的可变序列 基于模块的同质数据存储序列 Import Required No Yes (from array import array) 需要导入 否…