Posts by NickyE2 • 23 points
2 posts
-
0
votes1
answer267
viewsQ: Error using Lower(), upper() and title() functions
I have the following problem, when trying to use the functions lower(), title() and upper(). My compiler simply won’t allow and displays the error AttributeError:'list' object has no…
-
0
votes1
answer1303
viewsQ: Removing elements from a list
I’m having trouble with my code. print('inserindo e removendo itens da lista\n') bom_dia = [] bom_dia.insert(0, 'python') bom_dia.insert(1, 'a') bom_dia.insert(2, 'b') print(bom_dia) print() del…