SyntaxFix
Write A Post
Hire A Developer
Questions
Talk is cheap, show you the code:
>>> tup = (10, 20, 30) >>> i = 50 >>> print '%d %s'%(i,tup) 50 (10, 20, 30) >>> print '%s'%(tup,) (10, 20, 30) >>>