Posts by Adauto Pinheiro • 39 points
3 posts
-
0
votes1
answer74
viewsQ: How to use aggregation functions in a WHERE?
I’m doing a college paper on databases, and one of the Query what I must do is this: Show all creditors who had a larger purchase total than that R$ 5000,00; I tried to: SELECT NomeCredor,…
-
0
votes3
answers107
viewsQ: Python - Variable problem
I don’t know where I’m going wrong, but I wrote the following line of code: #variaveis globais fcfs = False #commands def fcfscheck(): fcfs = not fcfs Supposedly this function should alternate the…
python-3.xasked Adauto Pinheiro 39 -
2
votes2
answers991
viewsQ: How to read numbers separated by hyphens in a text file?
Let’s say I have a text file where its configuration is: 1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20...-999 How do I read the file and go saving each number this is separated by -?…