I have a number string and a Persian string that I want to concatenate in python (my IDE is Pycharm) and when I do this, right-to-left breaks down.
num = "1200"
body = "ریال"
total = num + " " + body
print(total)
it results:
1200 ریال
but I expect this:
1200 ریال
what can I do?