Skip to main content

Posts

Showing posts with the label Python:Functions and objects

Procedure, and the objective experience of Python

Assignment Operation ( Its totally fun programming! )                                            One more thing in python that fascinates us is its ability to hold the values of the variable even after assignment operation. Like say:               a=2         b=a This is bound to keep the values of both a,b intact without any change.  so doing things like:                                 print a,b                 gives #a=2,b=2 And!!             One more important thing to remember is sequential assignment: what I mean is assignment is sequential in its nature.  So if we have things like:   ...