Answers for "type arabic python"

0

arabic in python

import arabic_reshaper

text_to_be_reshaped =  'اللغة العربية رائعة'

reshaped_text = arabic_reshaper.reshape(text_to_be_reshaped)

rev_text = reshaped_text[::-1]  # slice backwards 

print(rev_text)
Posted by: Guest on June-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language