Ask Your Question

Revision history [back]

As far as the style is concerned, when you want to print the values of some variables for debug purposes, instead of

print "Value of a next"
print a

you can write

print "Value of a: ",a

It's easier to read (my opinion).