Skip to content

Latest commit

 

History

History
executable file
·
17 lines (15 loc) · 243 Bytes

File metadata and controls

executable file
·
17 lines (15 loc) · 243 Bytes
# 字符串
chars = "asdf"
for char in chars:
	print(char)

# 数组	
list = [1, 2, 3, 4, 5]
for element in list:
	print(element)

# 区间
for number in range(1, 5):
    print(number)
else:
    print("All number are interated.")