无法使用很大的期望读取 CSV 文件
CSV file can't be read using great expectation
当我 运行 在 pycharm 上使用 python 此代码时:
import great_expectations as ge
df=ge.read_csv("C:\Users\TasbeehJ\data\yellow_tripdata_2019-02.csv")
它给了我这个错误:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
如何解决?
最简单的方法是添加一个 r 以使用 \
作为符号而不是转义值。
import great_expectations as ge
df=ge.read_csv(r"C:\Users\TasbeehJ\data\yellow_tripdata_2019-02.csv")
你可以看这里试试,https://docs.python.org/3.7/library/csv.html?highlight=csv#module-csv
也许你可以试试写:
>>> import csv
>>> with open('yellow_tripdata_2019-02.csv', newline='') as csvfile:
当我 运行 在 pycharm 上使用 python 此代码时:
import great_expectations as ge
df=ge.read_csv("C:\Users\TasbeehJ\data\yellow_tripdata_2019-02.csv")
它给了我这个错误:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
如何解决?
最简单的方法是添加一个 r 以使用 \
作为符号而不是转义值。
import great_expectations as ge
df=ge.read_csv(r"C:\Users\TasbeehJ\data\yellow_tripdata_2019-02.csv")
你可以看这里试试,https://docs.python.org/3.7/library/csv.html?highlight=csv#module-csv
也许你可以试试写:
>>> import csv
>>> with open('yellow_tripdata_2019-02.csv', newline='') as csvfile: