📜  python如何检测列表中的项目数-任何代码示例

📅  最后修改于: 2022-03-11 14:57:04.934000             🧑  作者: Mango

代码示例3
# List of just integers
list_a = [12, 5, 91, 18]

# List of integers, floats, strings, booleans
list_b = [4, 1.2, "hello world", True]