I want to add the quotes to the object.
For example,
[As-is]
a = 100
[To-be]
a = '100'
Please somebody help me.
I want to add the quotes to the object.
For example,
[As-is]
a = 100
[To-be]
a = '100'
Please somebody help me.
The quotes around a value simply indicate that it is a string. If you want to convert an object to a string you can simply use the str()
function like so
a = 100
b = str(a)
print(b)