Listing 08-09: Validation example without using a function

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 08\08.09 - Validation example without using a function.py
# Description: Validation example without using a function
##############################################################################

while True:
    v = int(input("Enter a value between 0 and 5:"))
    if v < 0 or v > 5:
        print("Invalid value.")
    else:
        break
Click here to download the file