print('How many cats do you have?')
numCats = input()
try:
if int(numCats) >= 4:
print('That is a lot of cats.')
else:
print('That is not that many cats.')
except ValueError:
print('You did not enter a number.')
def check_negative(s):
try:
if int(numCats) <=0
print('You cant have negative cats.')
else:
print('That is not that many cats.')
I get invalid syntax and im unsure what im doing wrong. Im pretty new to this sort of stuff so nay help is appreciated.