1. From the following, find out which assignment statement will produce an error. State reason(s) too.

The statements which will produce an error are:

y = 037 # Decimal Integer literals can’t start with a 0

z= 0o98 # Digit 9 can’t be used in octal system

56thnumber = 3300 # variable name can’t start with a digit

!Taylor = ‘Instant # variable name can’t start with a !

this variable = 87.E02 # variable name can’t have a space ( ‘ ‘ ) in between

float = .17E-03 # float is a keyword