I have many variables which has unicode values in python file as below :
var1 = u'urname'
var2 = u'myname'
var3 = u'name'
I can convert from unicode to string all the variables as:
var1 = str(var1)
var2 = str(var2)
var3 = str(var3)
But I want to know can we convert all the variables from unicode to string at single instance?