Am generating dummy email address for testing purpose, and so wanted the following code to work
return "test_%@test.tm"% counter();
but its not working, seems some special things about @, not able to have @ in string.
EDIT
Could somebody please tell me why output has no ’email’ attribute/key present here with this example – https://gist.github.com/4505055
btw Am new to python
EDIT
my mistake, email attr was missing, sorry 🙁
It seems that you forgot the string replacement character
%s.