Posts by Robert Chinem • 11 points
3 posts
-
0
votes1
answer139
viewsQ: How to use Join in an object list?
class Pessoa: def __init__(self, nome, idade): self.nome = nome self.idade = idade p1 = Pessoa('João', 15) p2 = Pessoa('Maria', 17) lista_pessoas = [p1, p2] How to use the join() to print the list…
-
-2
votes2
answers93
viewsQ: Checking an element in a list of tuples using the in command, only one parameter observed in python
How to check if a tuple is contained in a list using the property in. Example: lista = [('joao', 13), ('maria', 20), ('carlos', 30)] I want to know if carlos is on the list…
-
-1
votes1
answer216
viewsQ: Python sort list of dictionaries by key and value in separate orders
How to sort a list of dictionaries for example: nomes = [{'nome': 'joao', 'sobrenome' 'alves'},{'nome': 'joao', 'sobrenome' 'silva'}] In alphabetical order the names In reverse order, surnames that…