Answer:
Offer second chances/clean slates.
Be resourceful.
Make learning active.
Be an advocate.
Pursue lifelong learning.
I would want to see the word compatible in the specs
Protocal
I need to make this 20 charaters so ye
It's a malware, and it basically let's the person/hacker/culprit get information off your computer without the owner of the computer knowing that the person is doing it. It's often used to find keystrokes, passwords, online interaction, and other personal data.
Explanation:
def letterDigitCount(j):
dic={"digits":0,"letters":0}
for a in j:
if a.isdigit():
dic["digits"]+=1
elif a.isalpha():
dic["letters"]+=1
return dic