Answer:
bland1 InDesign Blank2 typesetting
Explanation:
If its a game of skill, the game depends on how good you are in gaming, if its a game of chance it depends on what are the chances of you winning
D sag gg FYI hbd su such ja dash us di ggs xx NJ
Answer:
E
Explanation:
if you can reasonably shield them why would you replace the switches
Answer:
def check_password(pwd):
c=0
d=0
for i in pwd:
if (i>='a' and i<='z') or (i>='A' and i<='Z'):
c+=1
elif i>='0' and i<='9':
d+=1
c+=1
if len(pwd)==c and d>=2 and len(pwd)>=8:
print("valid password")
else:
print("Invalid password")
ps=input("Enter password for checking : ")
check_password(ps)
Explanation:
- Loop through the password and check if it contains any alphabet.
- Increment the counter if it contains any alphabet.
- If it contains a number, increment both c and d variables.
- Finally display the relevant message.