Skip to content

Latest commit

 

History

History
executable file
·
11 lines (9 loc) · 140 Bytes

File metadata and controls

executable file
·
11 lines (9 loc) · 140 Bytes
list = [1, 2, 3, 4, 5]
while index < len(list):
	print(list[index])
	index += 1


while num < 10:
    print(num)
    num +=  1