Posts by Bruno Mazzardo • 186 points
2 posts
-
6
votes1
answer2112
viewsA: Why shouldn’t I use Jquery with React?
React already has its own way of manipulating the DOM, so using jquery you would be forcing React to work a lot more, and render the elements more often, since it would not be under its control.…
-
1
votes3
answers3591
viewsA: How to use "while not in" in Python?
The problem is that user will come back as a string, tries to write while usuario not in lista: usuario = input('Escolha um número entre 0 e 2: ') if(regex(usuario) usuario = int(usuario) else…