Update 'gpylib/gpylib.py'

This commit is contained in:
gregorio 2021-09-15 00:56:31 +00:00
parent a1a94bdeb0
commit f45fa09f91
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@ def my_gpylib_hello():
def compare_values(value1, value2):
if value1 > value2:
print('{} is greater than {}'.format(value1, value2))
print('{} is greater than {}.'.format(value1, value2))
else:
print('{} is not greater than {}'.format(value1, value2))
print('{} is not greater than {}.'.format(value1, value2))
class Fish():
def __init__(self, name='Roberto', last_name='Pérez'):