Posts by Gustavo Alves • 34 points
5 posts
-
-2
votes1
answer84
viewsA: Attribute Error: scipy has no attribute 'Stats'
tries to import the function use: from scipy import stats if not solved, I found a solution in the gringa thread with same question: Click here to go…
-
-1
votes1
answer39
viewsA: Error reading a python txt file and adding variable
friend, welcome to the community, try using this code; the variable is not recognizing because the variable does not have the value "yes" that you put in the if; import sys import webbrowser import…
-
-1
votes1
answer219
viewsQ: How to remove a phrase within a TXT file
Say hello to the boys, I’m needing a help, I want to remove a KEY inside a TXT file but I’m not getting. Keys.txt: aLZkGWPXTLVdpVl w17AzQZIy22soy9 rAcEiWHwopYz2Pk uKPhbc0Xok5a2aO my code . php:…
-
-1
votes2
answers62
viewsA: for function in Python3 - how to print all elements of a series
welcome to the community. has tried to do the following? for i in range(1,32): # percorre um laço de 1 até 32 print('Numero: '+str(i)+' Dicionario: '+str(test['text'][i])) # mostra o numero…
-
0
votes1
answer43
viewsQ: How to compare datatime to a date
I have a problem in my login system, I want by validity system however I am not able to compare the current datatime with the received expiration datatime. I tried to use the following code and it…