fork download
  1. with open('teste.csv', 'r', encoding='utf-8') as f:
  2. for row in f:
  3. params = row.split(';') # delimiter aqui
  4. print(params)
Runtime error #stdin #stdout #stderr 0.01s 9992KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
FileNotFoundError: [Errno 2] No such file or directory: 'teste.csv'