You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can not use unicode function in Python 3, as it is renames to str in Python 3 version.
In Python 3, all strings are Unicode strings by default, so the unicode function is no longer necessary.
Please carefully review all instances where unicode is used, and replace them with str as appropriate.
The text was updated successfully, but these errors were encountered:
We can not use
unicode
function in Python 3, as it is renames to str in Python 3 version.In Python 3, all strings are Unicode strings by default, so the unicode function is no longer necessary.
Please carefully review all instances where unicode is used, and replace them with str as appropriate.
The text was updated successfully, but these errors were encountered: