##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 06\06.05 - Repetition with list size using len.py
# Description: Repetition with list size using len
##############################################################################
L = [1, 2, 3]
x = 0
while x < len(L):
print(L[x])
x += 1