Exception Python

# try/except
try:
    num = float(raw_input("Enter a number: "))
except:
    print "Something went wrong!"