##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 06\06.1123 - No Title.py
# Description: No Title
##############################################################################
L = [5, 9, 13]
x = 0
for e in L:
print(f"[{x}] {e}")
x += 1