📜  python代码示例中的foreach循环

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

代码示例4
# Python doesn't have a foreach statement per se. 
# It has for loops built into the language. 
# As a side note the for element in iterable syntax comes from 
# the ABC programming language, one of Python's influences