I am new and I'm trying to insert a character before a string.
If I have a string like so:
'wB0JSYuEUshUkgpKi8TRTwv/EABgBAQADAQAAAAAAA'
I want to add b before the string but not part of the string-like so:
b'wB0JSYuEUshUkgpKi8TRTwv/EABgBAQADAQAAAAAAA'
Here's what I tried:
test = 'b' + words[1]
test
but this obviously returns the b
within the string, which is not what I want.