I am trying to paste/concatenate 2 strings together, however whenever I try and combine the currency د.إ, it is placed behind my 2nd string e.g price.
Below is a minimal example of the problem
currency = 'د.إ'
price = '9.99'
string1 = currency + price
print(string1)
string2 = "".join([currency, price])
print(string2)
string3 = "{}{}".format(currency, price)
print(string3)
Does anyone know how to join them so they are correctly ordered?