Listing 03 - Page 0: No Title

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 03\03.1062 - No Title.py
# Description: No Title
##############################################################################

Enter your name: Minduim
Enter your age: abc
Traceback (most recent call last):
  File "input/input2.py", line 2, in <module>
    age = int(input("Enter your age: "))
ValueError: invalid literal for int() with base 10: 'abc'
Click here to download the file