I have a dictionary and I need to remove one whitespace at the beginning of the result value.
dct = {
'data': '',
'order': 100,
'result': ' home page',
'step': 'click'
}
So it will end up looking like this:
dct = {
'data': '',
'order': 100,
'result': 'home page',
'step': 'click'
}