Can anyone tell me that the "comtypes.client" library is just Windows? if so, please tell me some similar library (That works for the same thing) for Linux (ubuntu) thanks.
This is the following I created a script to 'decrypt' md5 hash, but when I enter Entry 21232f297a57a5a743894a0e4a801fc3 that is admin and is contained in wordlist, it hangs every time it reaches the b=get(f'url').content.decode(...
I'm trying to implement a transparent checkout for my online store using CIELO to do so.
data:
Django 1.9.5
Python 2.7.6
Ubuntu 14.04
nginx
uwgsi
digital ocean
link api python sky: link
I installed the certificates using the cielo.sh...
Find the first line in the array with all the positive elements, and the sum of these elements. Reduce all elements to this sum.
Here is my attempt, but in this way add up the positive elements:
matrix = [[-5, -6, 2], [7, 2, 3], [8, 4, -9]]...
Li this question and its answers I still have a question.
I wanted a function that counted the number of vowels in a text and stored in a dictionary where the key is the vowel considered.
I need to create a set, such as a list, in the Dealer variable, where it needs to contain letter objects, any idea how to do this?
class cartas(object):
def __init__(self,carta):
self.carta = carta
def ponto...
Does anyone help me? My code gives the following error:
Traceback (most recent call last):
File "main.py", line 1, in <module>
from chatterbot import ChatBot
ImportError: No module named 'chatterbot'
So here's main.py:
from ch...
In a distance jumping competition, each athlete is entitled to five jumps.
The athlete's score will be determined by the average of the remaining five values.
You must make a program that receives the name and the five distances reached by the a...
Hello, I have the following array:
matriz = np.array([
[5, 5, 5],
[5, 5, 5],
[10, 10, 10]
])
I need the result with an array of their respective means, like this:
[6.66, 6.66, 6.66]
Thankful