Posts by Augusto Dias • 43 points
2 posts
-
4
votes3
answers104
viewsA: Why do you use a vector with a name on it?
Generally capitalized names denote constant values, values that will not change during the course of the program, but nothing prevents these values from having a lower-case name as well. It is only…
-
0
votes1
answer558
viewsQ: Python: How are Flask dynamic routes implemented?
I started to study a little bit about web development with Flask. The framework treats dynamic components of the URL as follows: @app.route('/<comp_dinamico>') def page(comp_dinamico): #…