so this is my code:
csvfile = open("T0\usuarios.csv", "r", encoding="utf-8")
for row in csvfile:
print(row.split(","))
im working on a folder called "T0" where is my python file and also my csv file called "usuarios.csv", i have tried everything but i kept getting the error that says in the tittle or it says that cant find my csv file, im working with a relative path and i cant work with an absolute path but idk what im doing wrong.