python字符串转数字报错_Python 问题记录
Pycharm提示:Expectedtype‘optional[bytes]’ got ‘str’ instead使用split类似函数的时候提示:Expectedtype‘optional[bytes]’ got ‘str’ insteadrow.split('\t')并不影响运行,但是如果强迫症的话,可以改用下面的形式:row.split(b'\t')python字符串前面加u,r,b...