# Assignment 1 x = 5 try: print ("The number is : " +x) except: print("Casting WAS NOT made for the print of 'x'") print("The number is : %s" % x) print("\n")