Answer :
This is for Python
device_num = int(input('How many devices do you have: '))
if device_num >= 7 and device_num <= 12:
print('You have an average number of devices')
if device_num > 12:
print("You're beyond the average range")
This is for Python
device_num = int(input('How many devices do you have: '))
if device_num >= 7 and device_num <= 12:
print('You have an average number of devices')
if device_num > 12:
print("You're beyond the average range")