반응형
with open("product.tsv") as file:
tsv_file = csv.reader(file, delimiter="\t")
for line in tsv_file:
print(line)
반응형
'Programming > python' 카테고리의 다른 글
python 딕셔너리에서 KeyError가 발생하지 않도록 하는 방법 | get, pop (0) | 2022.01.14 |
---|---|
python - 중복된 문자 줄이기 (0) | 2022.01.12 |