I got this following error while running the python program to read csv data.
"PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' "
import csv
with open("shampoo_sales.csv", "r") as file:
reader = csv.reader(file)
for r in reader:
print(r)
Grant read permission to the user for the file.
icacls shampoo_sales.csv /grant:r "$($env:USERNAME):(r)"
icacls is the command used for managing the file and folder permissions on the Windows.
shampoo_sales.csv is the name of the file you want to modify.
/grant:r specifies to grant permissions.
"%USERNAME%:R" grants read (R) permissions to the user running the command.