Posts by Denys Nunes • 9 points
2 posts
-
0
votes4
answers3447
viewsA: Error while trying to write accents in Python files
Try adding the encoding statement at the beginning of the . py file #-*- coding:utf-8 -*-
-
0
votes1
answer112
viewsA: Ignore file with Python
What you can do is mark those files that are being used or with errors, because from the moment they are in use you will not be able to move them. Place their path in a list/Dict object and remove…