Posts by João • 39 points
4 posts
-
0
votes1
answer40
viewsA: Spring MVC does not recognize static page - CSS
I ended up finding the solution that was the lack of two dependencies: <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId>…
-
-1
votes1
answer40
viewsQ: Spring MVC does not recognize static page - CSS
I am doing a project in java using Spring MVC and when implementing the technology my page stopped being stylized, I already looked for the solution in other questions, in the documentation of…
-
-1
votes1
answer72
viewsQ: How do I get variable values out of a function?
I have a function, name rounds, with another function inside, and in this function that ta inside I have a declared variable, it calls pecas_comp, i need it in function rounds but am not getting…
-
3
votes2
answers512
viewsQ: How to simplify the if command in python?
Is there any way I can simplify this line of code in Python: if X = 1 or X = 2 or X = 3 or X = 4: I was trying this way: if X = {1 or 2 or 3 or 4}: But trying like that makes a mistake.…