It is maybe a silly question but I'm trying to translate a javascript sentence to python and I can't find a way to convert an integer to string like javascript.
Here the javascript sentence:
var n = 11;
n = n.toString(16);
It returns 'b'.
I tried chr() in python but it is not the same. I don't know to program in javascript so I would be grateful if someone can help me to understand how does javascript convertion works to do that.
Thanks you.