如何避免python3中的unicode字符串?

时间:2019-01-26 14:26:23

标签: unicode python-3.6

我已经阅读了一个csv文件,其中有许多以unicode读取的值。在进行数据处理时,我想跳过这些值。 现有代码:

if aString.encode('ascii', 'ignore') == b'':
    continue

当我在python环境中尝试此代码时,相同的代码正在工作。但这在脚本(.py文件)中不起作用。

enter image description here

0 个答案:

没有答案