I want to retain the leading "00" when a value is incremented by one,below val has "00349",when i increment and print it becomes 350,how to print as 00350 retaining the leading "00"
val = 00349
val = val + 1
print val -->prints as 350,i want to print as 00350