vote up 1 vote down star

What does the following Python statement mean?

send_data=""
str_len = "%#04d" % (len(send_data)/2)
flag

2 Answers

vote up 4 vote down check

This sets str_len to show half the length of send_data, padded with zeros to be four characters right. The % character is carrying out interpolation. See the references provided by others.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.