subject
Computers and Technology, 14.11.2019 22:31 bheam12

Python:
the password must have at least 8 characters with at least one lowercase, one uppercase and one digit character. the program should repetitively ask user for a password till the entered password meets the specifications. then the program should ask the user to confirm the password; if it could not be confirmed then the whole process should start from the beginning.

# this program to set a password.

# this function returns true if the string s has

# no lowercase character otherwise returns false.

def nolowercase(s) :

upper_s = s. upper()

if s == upper_s :

return true

else :

return false

# this function returns true if the string s has

# no uppercase character otherwise returns false.

def nouppercase(s) :

lower_s = s. lower()

if s == lower_s :

return true

else :

return false

# this function returns true if the string s has

# no digit character otherwise returns false.

def nodigit(s) :

if s. count("0") > 0 :

return false

elif s. count("1") > 0 :

return false

elif s. count("2") > 0 :

return false

elif s. count("3") > 0 :

return false

elif s. count("4") > 0 :

return false

elif s. count("5") > 0 :

return false

elif s. count("6") > 0 :

return false

elif s. count("7") > 0 :

return false

elif s. count("8") > 0 :

return false

elif s. count("9") > 0 :

return false

else :

return true

# program to set a password.

# the password must have more than 8 characters

# with at least one uppercase, at least one lowercase

# and at least one digit character.

def main() :

print("this program will set your password.")

password_not_set = true

while password_not_set :

password = input("enter a password: ")

while : # complete the condition

print("password not allowed.")

print("must be longer than 8 characters with")

print("at least one lowercase, one uppercase and one digit.\n")

password = input("enter another password: ")

password_confirm = input("reenter to confirm the password.")

if : # complete the condition

print("password did not match, set another password.")

else :

# complete

print("your password has been set.")

main()

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 17:00
Your company has 1,500 desktop computers running windows 7. you want to upgrade them to windows 10. which type of microsoft license would be best suited in this situation?
Answers: 3
question
Computers and Technology, 22.06.2019 17:50
Farah works in an office with two other employees. all three share a printer and an internet connection. the utility that makes this possible is defragger quicktime soho winzip
Answers: 1
question
Computers and Technology, 23.06.2019 13:30
Drag the tiles to the correct boxes to complete the pairs. match the errors with their definitions. #name #value #ref when a formula produces output that is too lengthy to fit in the spreadsheet cell arrowright when you enter an invalid cell reference in a formula arrowright when you type text in cells that accept numeric data arrowright when you type in a cell reference that doesn’t exist arrowright reset next
Answers: 1
question
Computers and Technology, 23.06.2019 14:30
Open this link after reading about ana's situation. complete each sentence using the drop-downs. ana would need a minimum of ato work as a translator. according to job outlook information, the number of jobs for translators willin the future.
Answers: 3
You know the right answer?
Python:
the password must have at least 8 characters with at least one lowercase, one upperc...
Questions
question
Mathematics, 15.10.2019 06:00
question
History, 15.10.2019 06:00
question
Social Studies, 15.10.2019 06:00
question
Biology, 15.10.2019 06:00