vote up 1 vote down star
1

I want to print modulus operator as it is over the command line: E.g this is how the output should look like:
1%2
2%4

or
30%
40%

I am using the print statement like this:

print 'computing %s % %s' % (num1, num2)

Its throwing the default error:

TypeError: not all arguments converted during string formatting

For now I am using:

print 'computing 1'+'%'+'2'

which prints:

computing 1%2

But tell me how to get this done using the first approach(:print 'computing %s % %s' % (num1,num2))

flag

61% accept rate

2 Answers

vote up 5 vote down check

Escape the % sign with another % sign, like this:

print 'computing %s %% %s' % (num1, num2)
link|flag
1  
Documentation Reference: docs.python.org/library/… – S.Lott Jul 2 at 10:02
vote up 0 vote down
print 'computing %s %% %s' % (num1, num2)
link|flag

Your Answer

Get an OpenID
or

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