Jupyter Misdisplying Python Lists With Arabic And Alphanumeric Elements
I am running into a display problem in Jupyter (both Classic and JupyterLab) for lists that include Arabic string elements and Latin Alphanumeric string elements. For example, if y
Solution 1:
Click on the print out to switch it to the correct position.
>>> print([ar,en])
['عربي', '7X']
#Click Here^
I believe this is an error that only applies to Arabic. I tried it with Chinese without problem. I'll try to do more research on it and update this answer.
Post a Comment for "Jupyter Misdisplying Python Lists With Arabic And Alphanumeric Elements"