7 lines
90 B
Python
7 lines
90 B
Python
import csv
|
|
|
|
def main():
|
|
with open('conversation.csv') as csvfile:
|
|
...
|
|
|
|
main()
|