Posts by Fabio Crispim • 23 points
3 posts
-
0
votes1
answer22
viewsQ: Problem: No name 'departments' in module 'funcionario.apps'
I cannot pass this phase because when compiling it presents the error : No name 'departments' in module 'funcio.apps' from django.db import models from django.contrib.auth.models import User from…
-
1
votes2
answers56
viewsQ: Category Names not shown. Object (1)
Can someone help me fix why the category names are not being displayed in my admin console? from django.db import models from django.conf import settings class Cad_pref(models.Model): nomepref =…
-
1
votes3
answers2910
viewsQ: How to delete the first line in a python CSV file
I need to delete the first line of a csv file, which is the header and has no use. Before deleting the line the script should write with the same name the csv file (without the deleted line). I…