I want to write a small script to tell me if the bass level is OK or not from user input.
I am just learning user input, and this is what I have so far:
def crisp():
    bass = input("Enter bass level on a scale of 1 to 5>>")
    print ("Bass level is at") + bass
    if bass >=4:
       print ("Bass is crisp")    
    elif bass < 4:
       print ("Bass is not so crisp")
 
     
     
    