Update 80_csv.py

This commit is contained in:
BLUELOVETH 2023-11-29 09:52:58 +08:00 committed by GitHub
parent f158ea8d3e
commit cb51cc95b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,10 @@ test("""a,b,c
1,2,"3"
""", [['a', 'b', 'c'], ['1', '2', '3']])
test("""a,b,c
1,2,"3,,"
""", [['a', 'b', 'c'], ['1', '2', '3,,']])
test("""a,b,c
1,2,'3'
""", [['a', 'b', 'c'], ['1', '2', '\'3\'']])