First time here? Check out the FAQ!
answered 13 years ago
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).