Posts by João Caetano • 53 points
6 posts
-
0
votes1
answer180
viewsQ: urllib.error.Httperror: HTTP Error 404: Not Found
I have the following code, simple. from urllib.request import urlopen from bs4 import BeautifulSoup word_site =…
-
0
votes1
answer142
viewsQ: Connect BD sql server to sql
I am trying to connect my sql Developer to sql server, but it is not working. Password and user are correct. They know what the problem is?…
-
0
votes0
answers61
viewsQ: ROLLUP and HAVING in the same consultation
The query below returns the sum of 24 accounts, using the ROLLUP and without the clause HAVING, so far so good, but when I use the clause HAVING shortly after the ROLLUP should return me the sum of…
-
1
votes1
answer50
viewsQ: Doubt about Git - branch master
Look at the image below, I’m no longer inside the directory where my Git repository is, but the master branch keeps popping up. Why?…
gitasked João Caetano 53 -
0
votes0
answers71
viewsQ: while with conditions or
I have the following code: while (operacoes is not '+') or (operacoes is not '-') or (operacoes is not '*') or (operacoes is not '/'): operacoes = str(input('Escolha uma das operações matemáticas a…
-
1
votes1
answer29
viewsQ: Tensorflow and Xgboost library via Pip
How do I install the Tensorflow and Xgboost libraries via Pip in Python version 3.7.2? I’m not getting it. I researched and the information I got was that they only work in previous versions of…