Hi this is Bits here
My Question is When i try to run my prog.it is giving an exception.

i.e can't assign to Literal.Could you tell me why?

the error msg is:
Syntax Error :Can't Assign to literal


the code is :
Code:
x=50,x=2
def Funct(x):
    print'the values of x is:',x


    print 'Now the value of x is:',x



Funct(x)
print'The
...