Posts by Felipe Cardoso • 11 points
2 posts
-
0
votes1
answer78
viewsA: How to create a Q&A site with html, css and js
As the question is a little comprehensive, I will try to help in the best way possible... Index make a database of questions in a file . js, using object. Example: const pergunta 1: { 'pergunta':…
-
0
votes3
answers1578
viewsA: Separating numbers into even and odd lists - Python
It’s like Murgalha said, see if it doesn’t suit you better: lista_completa = [3, 7, 8, 11, 16, 20] lista_pares = [] lista_impares = [] for c in lista_completa: if c % 2 == 0: lista_pares.append(c)…